小程序
小游戏
企业微信
微信支付
扫描小程序码分享
体验版不开调试模式的情况下webview里面地址里面有&符号,被转译成&,是什么原因?需要怎么解决?
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
encodeURIComponent(item.url) + '&title=' + encodeURIComponent(item.title)
console.log( decodeURIComponent(option.url))
转了,也解开了.但是<web-view :src="reviewUrl" ></web-view>在这个里面打开的时候还是把&符号,转为了&
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
统一回复:需要在小程序后台配个web-view业务域名就可以了
使用encodeURIComponent 处理一下
x.js //
let src = encodeURIComponent('https/xxx.com?id=1&from=1')
this.setData({
src:decodeURIComponent(src)
})
x.wxml //
<web-view src="{{src}}"/>
encodeURIComponent 用这个转一下
使用 encodeURIComponent 转义
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
encodeURIComponent(item.url) + '&title=' + encodeURIComponent(item.title)
console.log( decodeURIComponent(option.url))
转了,也解开了.但是<web-view :src="reviewUrl" ></web-view>在这个里面打开的时候还是把&符号,转为了&
统一回复:需要在小程序后台配个web-view业务域名就可以了
使用encodeURIComponent 处理一下
x.js //
let src = encodeURIComponent('https/xxx.com?id=1&from=1')
this.setData({
src:decodeURIComponent(src)
})
x.wxml //
<web-view src="{{src}}"/>
encodeURIComponent 用这个转一下
使用 encodeURIComponent 转义