我正在开发一个小游戏,我实例化了一些这样的对象:
this.polyfills = new Application.Polyfills(this.options);
问题是那段代码在点击(页面上的某些元素)时被调用了很多次,我不想每次都实例化那个对象,因为它已经达到了它的目的。我尝试过这样的事情:
this.polyfills = window.Application.Polyfills || new Application.Polyfills(this.options);
但上述显然行不通:) 那么我刚才描述的方法是什么?
编辑:点击实例化的对象(我称之为类)是这个:
Application.Level = function(_level, _levels, callback) {
this.helpers = (this.helpers instanceof Application.Helpers) ? true : new Application.Helpers();
var self = this,
_options = {
levels : {
count : _levels,
settings : (_level === undefined || _level === '') ? null : self.setLevelSettings(_level, _levels),
template : 'templates/levels.php'
},
api : {
getImages : {
service : 'api/get-images.php',
directory : 'assets/img/'
}
}
};
this.options = new Application.Defaults(_options);
this.polyfills = (this.polyfills instanceof Application.Polyfills) ? true : new Application.Polyfills(this.options);
return this.getImages(self.options.api.getImages.service, { url : self.options.api.getImages.directory }, function(data){
return (typeof callback === 'function' && callback !== undefined) ? callback.apply( callback, [ data, self.options, self.helpers ] ) : 'Argument : Invalid [ Function Required ]';
});
};
其中包含一个关于通过prototype
. 所以我想要做的可能是不可能的?!