最佳答案
我正在定义一个这样的对象:
function Project(Attributes, ProjectWidth, ProjectHeight) {
this.ProjectHeight = ProjectHeight;
this.ProjectWidth = ProjectWidth;
this.ProjectScale = this.GetProjectScale();
this.Attributes = Attributes;
this.currentLayout = '';
this.CreateLayoutArray = function()
{....}
}
然后我尝试创建一个这样的实例:
var newProj = new Project(a,b,c);
但这个例外被抛出:
Project is not a constructor
会出什么问题呢? 我谷歌了很多,但我仍然不知道我做错了什么。