赞
踩
uniapp 安卓和IOS退出App的方法
switch (uni.getSystemInfoSync().platform) {
case 'android':
plus.runtime.quit();
break;
case 'ios':
plus.ios.import('UIApplication').sharedApplication().performSelector('exit');
break;
}
```APP端:
if (uni.getSystemInfoSync().platform == 'ios'){
plus.ios.import("UIApplication").sharedApplication().performSelector("exit")
} else if (uni.getSystemInfoSync().platform == 'android'){
plus.runtime.quit();
}
在这里插入代码片
<navigator target="miniProgram" open-type="exit">退出小程序</navigator>
//在需要退出小程序的地方调用添加下面代码即可(js文件中)
wx.exitMiniProgram({
success: (res) => {}
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。