1.需要配置业务域名
2.没有配置业务域名,连接本地调试的:
image.png
目前没能在真机上调试
3.form.wxml页面
<view>
<web-view src="{{src}}"></web-view>
</view>
// src为跳转路径
//
form.js
const app = getApp() //获取应用实例
Page({
data: {
src: ''
},
onLoad: function (options) {
// console.log(app.globalData.projectData.id)
// console.log(options.followInfo)
let followInfoId = options.followInfoId
// console.log(followInfo)
let time = options.time
this.setData({
src: `http://XXX?isHide=1&id=${followInfoId}&followUpTime=${time}
&token=${app.globalData.token}&wxSystemId=${app.globalData.projectData.id}`
})
// console.log(this.data.src)
}
})
4.PC端处理
// 由小程序跳转来的,配置请求头
if (GET_URL_RATMS('wxSystemId')) {
config.headers['deviceTag'] = 'app'
}
···
网友评论