1
在調試模式爲什麼我的Tizen Web App在調試模式下表現不同?
tizen.application.getCurrentApplication().getRequestedAppControl()
的作品就像一個魅力。但在運行模式下,我的應用在這條線上崩潰。
在調試模式爲什麼我的Tizen Web App在調試模式下表現不同?
tizen.application.getCurrentApplication().getRequestedAppControl()
的作品就像一個魅力。但在運行模式下,我的應用在這條線上崩潰。
如果你想檢查是否有啓動請求,使用try-catch塊類似以下內容:
function checkLaunchRequest() {
var appControl
, appOperation
, tmp
;
try {
appControl = app.getCurrentApplication().getRequestedAppControl().appControl;
appOperation = appControl.operation;
console.log("checkLaunchRequest operation: " + appOperation);
if (appOperation.indexOf("http://tizen.org/appcontrol/operation/view") !== -1) {
...Do something here...
}
} catch (err) {
console.error("Invalid launch request: " + err.message);
}
}
還要確保您已在config.xml中設置正確的權限。您需要設置「http://tizen.org/privilege/application.launch」。
您是否試圖將它們分開調用以獲得導致錯誤的函數調用? – sschrass