我正在尝试定义以下类,但它给了我一个错误:
错误:声明dashboardFloatingPane:mixin#0不是可调用的构造函数。
define(["dojo/_base/declare", "dojo/dnd/move", "dojox/layout/FloatingPane"],
function(declare, move, FloatingPane){
return declare("dashboardFloatingPane", [move, FloatingPane], {
constructor: function() {
this.inherited(arguments);
this.moveable = new dojo.dnd.move.constrainedMoveable(
this.domNode, {
handle: this.focusNode,
constraints: function() {
var coordsWindow = {
l: 0,
t: 20,
w: window.innerWidth,
h: window.innerHeight
};
return coordsWindow;
}, within: true
}
);
}
});
});
我错过了什么?
非常感谢
答案 0 :(得分:2)
在示例#1中,您尝试将dojo/dnd/move
模块用作您班级的父级,而在示例#2中则不是。
return declare("dashboardFloatingPane", [move, FloatingPane], {
vs
dojo.declare("dashboardFloatingPane", dojox.layout.FloatingPane, {
我不相信dojo/dnd/move
模块不是要继承的有效类,因此它不是可调用构造函数的错误。