小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我想通过schema跳转到小程序关联的公众号文章,后端设置的path为"/pages/out/out" query为公众号文章地址,然后前端在out页面该如何处理?希望官方大大和各位大佬回复一下,感谢!
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
path:你的小程序页面webview路径:比如:pages/webview/webview
query: url=encodeURIComponet('公众号文章')
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
// app.js
onShow(options) {
this.globalData.query = options.query || {}
if (options.referrerInfo) {
this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData)
}
},
onLaunch(options) {
globalData: {
query: {}
// 页面js:
onLoad(options) {
this.setData({
url: options.url || getApp().globalData.query.url || ''
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
path:你的小程序页面webview路径:比如:pages/webview/webview
query: url=encodeURIComponet('公众号文章')
// app.js
onShow(options) {
this.globalData.query = options.query || {}
if (options.referrerInfo) {
this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData)
}
},
onLaunch(options) {
this.globalData.query = options.query || {}
if (options.referrerInfo) {
this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData)
}
},
globalData: {
query: {}
}
// 页面js:
onLoad(options) {
this.setData({
url: options.url || getApp().globalData.query.url || ''
})
}