gpt4 book ai didi

android - 在外部浏览器中打开链接后,Phonegap android 应用程序终止

转载 作者:行者123 更新时间:2023-11-30 03:24:58 25 4
gpt4 key购买 nike

我有问题!我正在为 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
);

});

}
}

操作系统

    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
);
});
}
}

关于android - 在外部浏览器中打开链接后,Phonegap android 应用程序终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18379032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com