vue代码
<template>
<view>
<web-view v-if="url" :src="url" class="webview-wrap"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad() {
// 不编码
// this.url = 'demo.com?a=2025+'
// 编码
this.url = `demo.com?a=${encodeURIComponent('2025+')}`
}
}
</script>
html代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
demo
</body>
<script type="text/javascript">
window.onload = function() {
console.log('window.onload',location.href)
}
</script>
</html>
1 个回复
4***@qq.com (作者)
已解决