0
WebOS 3.0의 onComplete 함수에서 enyo Ui 구성 요소에 액세스 할 수 없습니다.WebOS 3.0 함수에서 UI에 액세스
buttonTapped: function(inSender, inEvent) {
console.log("Button is clicked");
this.$.txt.setContent(inSender.name + " tapped."); // This worked
var request = webOS.service.request("luna://com.webos.service.tv.systemproperty", {
method: "getSystemInfo",
parameters: {"keys": ["modelName", "firmwareVersion", "UHD", "sdkVersion"]},
onComplete: function (inResponse) {
var isSucceeded = inResponse.returnValue;
if (isSucceeded){
console.log("Result: " + JSON.stringify(inResponse));
$.txt.setContent("Result: "+JSON.stringify(inResponse)); // This is not worked
}
}
});
...
이것에 대해 어떤 문서를 찾을 수 없습니다
Button clicked Result{"modelName":"WEBOS1","firmwareVersion":"03.00.00","UHD":"false","sdkVersion":"03.00.00","returnValue":true} Uncaught TypeError: Cannot read property 'txt' of undefined
콘솔 출력.