uniapp内嵌入外部页面
uniapp内嵌入外部页面嵌入外部页面找到了两种解决方法:1,iframe<iframe src="https://blog.csdn.net/weixin_44794123?spm=1001.2101.3001.5343" :style="{ height: this.app_height * 0.5 + 'rpx',width:this.app_height * 100 + 'rpx'
·
uniapp内嵌入外部页面
嵌入外部页面
找到了两种解决方法:
1,iframe
<iframe src="https://blog.csdn.net/weixin_44794123?spm=1001.2101.3001.5343" :style="{ height: this.app_height * 0.5 + 'rpx',width: this.app_height * 100 + 'rpx' }" >
</iframe>
使用iframe,会出现布局错乱,然后需要手动去适配app在不同设备上的样式问题
2,web-view
web-view是一个 web 浏览器组件,可以用来承载网页的容器,会自动铺满整个页面(nvue 使用需要手动指定宽高)。
<web-view src="https://blog.csdn.net/weixin_44794123?spm=1001.2101.3001.5343"></web-view>
参考:unipp官网
更多推荐
已为社区贡献5条内容
所有评论(0)