找遍整个互联网都没找到,官方提供的 demo 里面有一个 webview-local 但是根本跑不起来
<template>
<view>
<web-view style="width: 500px;height: 500px;" src="/src/hybrid/html/local.html" @message="getMessage"></web-view>
</view>
</template>
<script>
export default {
methods: {
getMessage(e) {
uni.showModal({
content: JSON.stringify(e.detail),
showCancel: false,
});
},
},
};
</script>
<style></style>
1***@qq.com
没毛病,src去掉就可以了
2020-04-22 12:00
muxi2020 (作者)
开玩笑,怎么可能没看文档,只不过发完这个帖子就莫名其妙的好了
2020-04-22 13:29