ContentPaneから派生した次のサブクラスがあります。
define([
"dijit/layout/ContentPane",
"dojo/_base/declare"
],
function (ContentPane, declare) {
var view = declare("client.View", ContentPane, {
html: null,
constructor: function (args) {
declare.safeMixin(this, args);
if (this.html !== null) {
this.set("content", this.html);
}
}
});
return view;
}
);
ここで、次のコードは「this.set( "content"、this.html);」にTypeErrorをスローします。ライン:
var html = "<div>Hello</div>";
var view = View(html);
ContentPaneのコンテンツを適切に設定するにはどうすればよいですか?