假设我在一个对象中有以下属性方法:
onReady: function FlashUpload_onReady()
{
Alfresco.util.Ajax.jsonGet({
url: Alfresco.constants.PROXY_URI + "org/app/classification",
successCallback: {
fn: function (o) {
var classButtonMenu = [],
menuLabel, that = this;
var selectButtonClick = function (p_sType, p_aArgs, p_oItem) {
var sText = p_oItem.cfg.getProperty("text");
that.classificationSelectButton.set("label", sText);
};
for (var i in o.json.items) {
classButtonMenu.push({
text: o.json.items[i].classification,
value: o.json.items[i].filename,
onClick: {fn: selectButtonClick}
});
}
this.classificationSelectButton = new YAHOO.widget.Button({
id: this.id + "-appClassification",
type: "menu",
label: classButtonMenu[0].text,
name: "appClassification",
menu: classButtonMenu,
container: this.id + "-appClassificationSection-div"
});
},
scope: this
},
failureMessage: "Failed to retrieve classifications!"
});
我花了一些猜测才弄清楚在selectButtonClick
我需要引用的函数中that
而不是this
为了获得访问权限this.classificationSelectButton
(否则会出现undefined
),但我不确定为什么我不能使用this
. 我最好的猜测是,new YAHOO.widget.Button
一旦调用构造函数,整个对象中以某种方式被引用的任何属性都会失去作用域。
可能有人请解释为什么它是我必须参考classificationSelectButton
同var that = this
而不只是调用`this.classificationSelectButton“?