微信小程序点击按钮不跳转,报警告:worker.js?libName=WAAccelerateWorker.js:1 [Deprecation] SharedArrayBuffer will require cross-origin isolation as of M92, around July 2021. See https://developer.chrome.com/blog/enabling-shared-array-buffer/ for more details
<button class="left" style="width:100%;height:10vh" bindtap="add" >添加</button></view>
// index.js
add:function(event){
wx.navigateTo({
url: '/pages/add/add.wxml',
})
},
<text bindtap="backList">返回</text>
//add.js
backList(){
wx.navigateBack();
},