有没有办法在格式化程序函数中使用this
运算符?我的意思是this
,我使用格式化程序的组件的引用。例如,我得到了这段代码:
metadata: {
properties: {
// ...
showId : { type : "boolean", defaultValue : true },
// ...
}
}
//Some view stuff ...
columns: [
new sap.ui.table.Column({
label: "Beschreibung ( ID )",
filterProperty: "SHORT_TEXT",
template: new sap.m.Text().bindProperty("text", {
parts: [/*...*/],
formatter: function(text, id) {
if (text != null && id != null) {
if(this.getProperty("showId)){
return text + " ( " + id + " )";
} else {
return text;
}
}
return "";
}
}),
})
]
当我想用showId
访问属性this.getProperty("showId)
时,我得到一个例外,这个函数不存在于this
。我知道如何将this
绑定到事件函数,但是当这样调用函数时,我不知道如何处理这个;)
只需使用以下语法将this
绑定到函数:
formatter : function(text, id) {
if (text != null && id != null) {
if(this.getProperty("showId)){
return text + " ( " + id + " )";
}else{
return text;
}
}
return "";
}.bind(this)