0
其拋出錯誤無法設置從XML視圖屬性值的格式文本控制
<FormattedText htmlText="<h1>Welcome</h1>" id="ft"/>
有了下面這樣的方式從控制器將數據添加它做工精細
<FormattedText id="ft"/>
onAfterRendering : function(){
this.getView().byId("ft").setHtmlText("<h1>Welcome from controller</h1>")
}
我的XML代碼有人可以解釋這種控制工作背後的原因是什麼。