我正在使用标准的js插件来进行日食。我有这样的事情:
Images.js:
Images = function() {};
Images.prototype = {
load: function(){
// code...
}
};
Game.js:
Game = function() {
this.images = {};
};
Game.prototype = {
init : function() {
var self = this;
self.images = new Images();
self.images. // press ctrl+space
}
};
当我在'self.images'后按ctrl + space时。我想它建议我'加载'方法,但它没有看到它。有可能解决它吗?