Base
から継承するクラスがあり[_WidgetBase, _TemplatedMixin]
ます。Base
正常に動作しています。今、私はこれBase
を機能していない別のクラスで継承します
define([
"dojo/_base/declare", "dojo/parser", ...
], function(declare, parser, ...){
return declare("mc.widgets.Base", [_WidgetBase, _TemplatedMixin], {
templateString:
'<div class="mc-note-base">'+
'</div>',
constructor: function(argv){
var self = this.inherited(arguments);
return self;
},
data: function(){
},
postCreate: function(){
...
}
})
});
派生クラス
define([
"dojo/_base/declare", "mc/base/path", "mc/widgets/Base"
], function(declare, path, Base){
return declare("mc.widgets.Derived", [Base], {});
})
派生クラスがスローします
エラー: mc.widgets.Derived を宣言します: 継承されたチェーン コンストラクターを呼び出します