我有个问题!我正在为 iOS 和 Android 开发一个 phonegap 应用程序。当我打电话时
window.open(url, "_system")
在 iOS 上它会打开,但我可以导航到我之前在我的应用程序中的位置。但是当我在 android 中打开一个链接并导航回应用程序时,它会从头开始。如何让应用程序在我离开时保持原样并在之后返回?
安多里德
function openInApp(link){
console.log("Open Call"+ link);
if(link.length<=1){
navigator.notification.alert(
'Page not found..!', // message
null, // callback
'Title', // title
'Ok' // buttonName
);
}else{
var ref = window.open(encodeURI(link), '_blank', 'location=yes');
ref.addEventListener('loaderror', function(event) {
navigator.notification.alert(
'error: ' + event.message, // message
null, // callback
'Title', // title
'Ok' // buttonName
);
});
}
}
IOS
function openInApp(link){
console.log("Open Call"+ link);
if(link.length<=1){
navigator.notification.alert(
'Page not found..!', // message
null, // callback
'Title', // title
'Ok' // buttonName
);
}else{
var ref = window.open(encodeURI(link), '_blank', 'location=no');
ref.addEventListener('loaderror', function(event) {
navigator.notification.alert(
'error: ' + event.message, // message
null, // callback
'Title', // title
'Ok' // buttonName
);
});
}
}
会在评论中问这个问题,但需要50个声望……:(
在你config.xml
的exit-on-suspend
启用了吗?也就是说,你有没有下面的<preference>
元素?
<cordova>
...
<preference name="exit-on-suspend" value="true" />
...
</cordova>