赞
踩
1、在小程序的WXML文件中,使用<web-view>
组件并指定src
属性为H5页面的URL。
2、配置小程序的后台,将需要跳转的H5页面地址添加到白名单中,以允许访问。
- <template>
- <web-view :src="H5URL"></web-view>
- </template>
- <script>
- export default {
- name: "webview",
- data() {
- return {
- H5URL: "https://wwww.baidu.com"
- }
- }
- }
- </script>
注意事项:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。