小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序内嵌网页,安卓可以下载app,ios不行,可以解决吗?朋友圈或者微信好友分享的网页可以实现ios跳转applestore下载
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
这就是下载页的JS代码,小程序里是用webview直接指向的。然后安卓可以自动下载app,ios不能自主跳到appstore
分享到微信好友或者朋友圈的下载页就ios和安卓都能下载
<script type="text/javascript">
var browser = {
versions: function() {
var u = navigator.userAgent, app = navigator.appVersion;
return {
trident: u.indexOf('Trident') > -1,
presto: u.indexOf('Presto') > -1,
webKit: u.indexOf('AppleWebKit') > -1,
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,
mobile: !!u.match(/AppleWebKit.*Mobile.*/) || !!u.match(/AppleWebKit/),
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1,
iPad: u.indexOf('iPad') > -1,
webApp: u.indexOf('Safari') == -1
};
}(),
language: (navigator.browserLanguage || navigator.language).toLowerCase()
}
var isWeixin = is_weixin();
if (browser.versions.ios || browser.versions.iPhone || browser.versions.iPad) {
window.location="https://itunes.apple.com/cn/app/id1353241772?mt=8";
else if (browser.versions.android) {
if (isWeixin) {
document.getElementById("content").style.display="block";
document.getElementById("clickgoweixin").style.display="block";
window.location="https://www.xxx.com/xxx-latest.apk";
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
var gowei = document.getElementById("clickgoweixin");
gowei.onclick=function clickgoweixin() {
wx.miniProgram.navigateTo({url: '/pages/index/index'})
</script>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
这就是下载页的JS代码,小程序里是用webview直接指向的。然后安卓可以自动下载app,ios不能自主跳到appstore
分享到微信好友或者朋友圈的下载页就ios和安卓都能下载
<script type="text/javascript">
var browser = {
versions: function() {
var u = navigator.userAgent, app = navigator.appVersion;
return {
trident: u.indexOf('Trident') > -1,
presto: u.indexOf('Presto') > -1,
webKit: u.indexOf('AppleWebKit') > -1,
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,
mobile: !!u.match(/AppleWebKit.*Mobile.*/) || !!u.match(/AppleWebKit/),
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1,
iPad: u.indexOf('iPad') > -1,
webApp: u.indexOf('Safari') == -1
};
}(),
language: (navigator.browserLanguage || navigator.language).toLowerCase()
}
var isWeixin = is_weixin();
if (browser.versions.ios || browser.versions.iPhone || browser.versions.iPad) {
window.location="https://itunes.apple.com/cn/app/id1353241772?mt=8";
}
else if (browser.versions.android) {
if (isWeixin) {
document.getElementById("content").style.display="block";
}
document.getElementById("clickgoweixin").style.display="block";
window.location="https://www.xxx.com/xxx-latest.apk";
}
function is_weixin() {
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == "micromessenger") {
return true;
} else {
return false;
}
}
var gowei = document.getElementById("clickgoweixin");
gowei.onclick=function clickgoweixin() {
wx.miniProgram.navigateTo({url: '/pages/index/index'})
}
</script>