试图在 Javascript 中创建一个对象(对于 Appcelerator/Titanium)。“对象”定义如下:
function server () {
this.cacheimages = 0;
this.login = "";
this.name = "";
this.root = "";
this.signup = "";
this.useimages = 0;
this.userexists = "";
this.isdefault = 0;
return this;
}
在同一个文件中,当我运行此行时在另一个函数中:var server = new server();
我得到错误Result of expression 'server' is not a constructor.
我已经尝试过使用和不使用“return”行,都不起作用。我究竟做错了什么?