0
我在Famo.us Framewok中有小應用程序。與在Famo.Us中聲明變量相關的問題
我想聲明可用於調用js的數組變量。
我有2個js文件:(1)PageView.js(2)GetContent.js
(1) PageView.js
function AddContent() {
View.apply(this, arguments);
var getContent = new GetContent();
getContent.AddPages();
(2)GetContent.js
function GetContent() {
View.apply(this, arguments);
}
GetContent.prototype = Object.create(View.prototype);
GetContent.prototype.constructor = GetContent;
GetContent.DEFAULT_OPTIONS = {};
GetContent.prototype.AddPages = function() {
GetData();
}
我想用的GetContent
對象聲明在GetContent.js
文件數組變量,可以是可訪問在PageView.js
在上面的代碼中以PageView.js
定義。 這樣我就可以使用像getContent.variablename[1]
如何實現它?
如何定義Getter和Setter?什麼是syntex? –
http://ejohn.org/blog/javascript-getters-and-setters/ –