小程序webView跳转链接失效

const handleSign=()=>{
  contractGoSign(sourceId).then(res => {
    Taro.navigateTo({
      url:`/pages/transactionInquiry/contract/main/webView?src=${encodeURIComponent(res)}`
    })
  })
}

使用encodeURIComponent转义地址,否则/变为%

<web-view :src="decodeURIComponent(src)" ></web-view>

使用decodeURIComponent解析

你可能感兴趣的:(小程序,javascript,前端)