获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 开发工具bug?
[图片] 看图,我用 gif 录制的屏幕,这里闪的不是很快
10-07 - 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);
09-27