微信小程序用<web-view 嵌入h5网页,改了h5网页后,可能是缓存的原因,小程序上看还是原来的,怎么处理
<web-view wx:if="{{openid.length>8}}" cache-mode="no-cache" src="https://w3.html?openid={{openid}}&v={{shijiancuo}}"></web-view>
onShow: function () {
// 生成当前时间戳(10位或13位均可)
const timestamp = Date.now(); // 13位时间戳(如:1689027600000)
var that=this;
that.setData({
shijiancuo:timestamp
})
},