发表日期:2019-11 文章编辑:小灯 浏览次数:5358
微信小程序中嵌入html使用如下标签<rich-text nodes="{{--}}"></rich-text>
之前一个需求开发当中,需要在小程序中套入页面,小程序官方方法如上,但是又很多问题,比如样式问题没办法修改,经搜索的替换标签方法未生效,因为是后台返回,后端人员并不想他们处理两次标签,只想和h5,pc公用一套
经多方实验沟通采用了如下方法,后端去掉html body等头部,保留信息片段,前端创建专门的展示页面,如:
`<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>博识</title>
<meta name="full-screen" content="yes" />
<meta name="browsermode" content="application" />
<meta name="x5-orientation" content="portrait" />
<meta name="x5-fullscreen" content="true" />
<meta name="x5-page-mode" content="app" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<script src="jquery.min.js"></script>
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.0.js"></script>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body,
.page {
width: 100%;
word-break: break-all;
overflow-x: hidden;
}
.title {
font-size: 18px;
text-align: center;
padding: 15px 10px 5px;
color: #000;
font-weight: 700;
line-height: 30px;
}
.page {
padding: 5px 15px 5px 10px;
}
img {
display: block;
margin: 5px auto;
width: 100% !important;
height: 100% !important;
}
</style>
<body>
<div class="title"></div>
<div class="page"></div>
<script type="text/javascript">
var param = "---"
$.ajax({
contentType: "application/json",
type: 'GET',
url: url + param,
cache: false,
data: JSON.stringify(param),
success: function (response) {
if (response.code == 0) {
var content = response.data.content
var titles = response.data.tit
$('.title').html(tit)
$('.page').html(content)
}
},
error: function (a, b, c) {
$('.page').html('暂无数据,请稍后再试')
}
});
// var smallPro = false;
// //判断当前页面是否在小程序环境中
// wx.miniProgram.getEnv(function (res) {
// console.log(res.miniprogram) // true
// if (res.miniprogram) {
// smallPro = true;
// } else {
// smallPro = false;
// }
// });
// if (smallPro) {
// wx.miniProgram.navigateTo({
// url: '/pages/mymanage/mymanage',//跳转回小程序的页面
// success: function () {
// console.log('success')
// },
// fail: function () {
// console.log('fail');
// },
// });
// } else {
// // window.open('http://t.cn/RXT246p', '_blank');//这里是H5页面之前跳转到第三方的咨询客服
// }
</script>
</body>
</html>`
小程序中使用:<web-view class="det-box" src="{{url}}"></web-view>
`onLoad: function (option) {
let nid = option.nid
let urls = app.globalData.DOMAIN_PATH + 'minidet.html/?miniid=' + nid
this.setData({
id:nid,
url: urls
})
},`
这样样式完全可以自由控制
日期:2019-11 浏览次数:5421
日期:2019-11 浏览次数:11883
日期:2019-11 浏览次数:4259
日期:2019-11 浏览次数:5284
日期:2019-11 浏览次数:5200
日期:2019-11 浏览次数:7072
日期:2019-11 浏览次数:5103
日期:2019-11 浏览次数:15667
日期:2019-11 浏览次数:4623
日期:2019-11 浏览次数:6416
日期:2019-11 浏览次数:5255
日期:2019-11 浏览次数:4476
日期:2019-11 浏览次数:10638
日期:2019-11 浏览次数:8227
日期:2019-11 浏览次数:4984
日期:2019-11 浏览次数:4222
日期:2019-11 浏览次数:8851
日期:2019-11 浏览次数:4568
日期:2019-11 浏览次数:4751
日期:2019-11 浏览次数:4780
日期:2019-11 浏览次数:4384
日期:2019-11 浏览次数:4945
日期:2019-11 浏览次数:10190
日期:2019-11 浏览次数:5357
日期:2019-11 浏览次数:5310
日期:2019-11 浏览次数:4801
日期:2019-11 浏览次数:12210
日期:2019-11 浏览次数:7258
日期:2019-11 浏览次数:7806
日期:2019-11 浏览次数:4791
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.