在Cordova杀死app之前是否有一个方法被调用?我发现有onPause/onResume
。但它只适用于app应用于后台:cordova doc。
我有服务,我想在第一次访问页面时只启动一次。但是当我继续访问该页面时,该服务会多次启动。
答案 0 :(得分:0)
不,在杀死cordova应用之前,没有任何事件发生。
但是使用localStorage
//you can use the following inside document.ready() or cordova's deviceready
if (localStorage["firstTimeFlag"] == null || localStorage["firstTimeFlag"] == "")
{
alert("You are here for the first time");
//here add your service,do your thing. show start tour or splash screen or something like that
window.localStorage["firstTimeFlag"] = true;
} else {
alert("You are not here for the first time");
}