小程序
小游戏
企业微信
微信支付
扫描小程序码分享
Kbone多入口在开发者工具上编译其他入口文件是空白页面这个如何配置呀? 想生成单页面二维码不知道如何写,求助呀!
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
Q:已知 location.href,如何封装成对应的小程序的页面路由?
A:先找到对应的页面路径,假设是 pages/home/index,那么封装方式:/pages/home/index?type=${type}&targeturl=${encodeURIComponent(location.href)}&search=${encodeURIComponent(location.search)}&hash=${encodeURIComponent(location.hash)}。type 支持 open(新开页面)、jump(页面内跳转)和 share(分享进入),一般在配置体验版、添加工具模式等情况下使用 type=open 即可;targeturl 是经过编码的 location.href;search 和 hash 可传可不传,如若不传,则取 targeturl 中的 search 和 hash 进行解析。
pages/home/index
/pages/home/index?type=${type}&targeturl=${encodeURIComponent(location.href)}&search=${encodeURIComponent(location.search)}&hash=${encodeURIComponent(location.hash)}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
Q:已知 location.href,如何封装成对应的小程序的页面路由?
A:先找到对应的页面路径,假设是
pages/home/index
,那么封装方式:/pages/home/index?type=${type}&targeturl=${encodeURIComponent(location.href)}&search=${encodeURIComponent(location.search)}&hash=${encodeURIComponent(location.hash)}
。type 支持 open(新开页面)、jump(页面内跳转)和 share(分享进入),一般在配置体验版、添加工具模式等情况下使用 type=open 即可;targeturl 是经过编码的 location.href;search 和 hash 可传可不传,如若不传,则取 targeturl 中的 search 和 hash 进行解析。