收藏
回答

web view 组件跳转 h5 页面,有页面响应,但是 h5 接收不到参数?

<template>

    <view>

        <web-view :src=webViewUrl></web-view>

    </view>

</template>

 

webViewUrl.value = "http://localhost:5173/#/excel?data=" + encodeURIComponent(JSON.stringify({

        id: option?.id,

        token: currentUser.value?.token

    }))

    console.log(webViewUrl.value);

h5 啥都接收不到


    let params = JSON.parse(decodeURIComponent(window.location.href.split("?data=")[1]))

    data.value = params

    console.log(data.value);


回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容