DOJO className
中declare(className,superclass,props)
的用途是什么。
在以下示例中,我尝试在使用in-heritage时使用className。
传递className
时收到错误。
declare(className,superclass,props);
className Optional
The optional name of the constructor (loosely, a "class") stored in the "declaredClass" property in the created prototype. It will be used as a global name for a created constructor.
require(["dojo/_base/declare"], function(declare) {
var Mammal = declare('Mammal',null, {
constructor: function(name) {
this.name = name;
},
sayName: function() {
console.log(this.name);
}
});
var Dog = declare('Dog', Mammal, {
makeNoise: function() {
console.log("Waf waf");
}
});
var myDog = new Dog("Pluto");
myDog.sayName();
myDog.makeNoise();
console.log("Dog: " + myDog.isInstanceOf(Dog));
console.log("Mammal: " + myDog.isInstanceOf(Mammal));
});
答案 0 :(得分:2)
我不确定您收到了什么错误,但className
参数基本上只是出于遗留原因。声明的类被放置在具有该名称的全局变量中,但是当您使用AMD时,您实际上并不需要它。
例如,如果你这样做了:
var Dog = declare('MyLibrary.Doggie', Mammal, {
makeNoise: function() {
loglog("Waf waf"); //console.log("Waf waf");
}
});
将创建一个名为MyLibrary
的全局对象,其中包含名为Doggie
的成员。所以之后,你可以写:
var myDog = new MyLibrary.Doggie("Pluto"); // instead of Dog("Pluto");
myDog.sayName();
myDog.makeNoise();
我认为现在没有任何理由这样做,所以你应该忽略className参数。
var Mammal = declare(null, { .... });
var Dog = declare(Mammal, { .... });