小程序
小游戏
企业微信
微信支付
扫描小程序码分享
Android系统不支持直接识别 URL Scheme,用户无法通过 Scheme 正常打开小程序,开发者需要使用 H5 页面中转,再跳转到 Scheme 实现打开小程序,跳转代码示例如下:
location.href = 'weixin://dl/business/?t= *TICKET*' 想请教哈苹果手机能兼容这种模式嘛 我测试了哈好像不行 求解答
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以参考这个文章:https://developers.weixin.qq.com/community/develop/article/doc/000eca8289850052c9fb309c35b413
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
在小程序里怎么处理 url_scheme 传过来的参数
直接写在页面js里就可以了,
避免被拦截,加个按钮再触发就行了。
我是这么写的没啥问题,你可以贴一下你的代码
// q = 'weixin://dl/business/?t= *TICKET*' const params = qs.parse(window.location.search.replace('?', '') ??''); if (params.q) { window.location.href = decodeURIComponent(params.q as string); }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
可以参考这个文章:https://developers.weixin.qq.com/community/develop/article/doc/000eca8289850052c9fb309c35b413
在小程序里怎么处理 url_scheme 传过来的参数
直接写在页面js里就可以了,
避免被拦截,加个按钮再触发就行了。
我是这么写的没啥问题,你可以贴一下你的代码
// q = 'weixin://dl/business/?t= *TICKET*' const params = qs.parse(window.location.search.replace('?', '') ??''); if (params.q) { window.location.href = decodeURIComponent(params.q as string); }
/**
* 自动跳转到手机页面
*
* @param
* @arrange (512.笔记) jb51.cc
**/
//函数名为 runoob
window.onload=function runoob(){
//document.write("菜鸟教程 -- 学的不仅是技术,更是梦想!!!");
//window.location ="https://www.baidu.com/";
// alert("进来了");
// location.href ="weixin://dl/business/?t=1rZ0BiEkQ4h";
location.href ="weixin://dl/business/?t=1rZ0h";
}
</script> 我的是直接这样的 把 页面放到微信里 安卓的能打开 苹果没反应