码迷,mamicode.com
首页 > 微信 > 详细

二、小程序内嵌Html基础格式说明

时间:2019-06-30 09:54:00      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:template   import   title   temp   nbsp   info   des   page   span   

 1、index.js文件更改

技术图片

var WxParse = require(‘../../wxParse/wxParse.js‘);
Page({
  data: {
  },
  onLoad: function () {
    var that = this;
    var article = `
        <!DOCTYPE html>
        <html>
        <head>
          <title></title>
        </head>
        <body>
          <h1>Hello</h1>
        </body>
        </html>
        `;
    WxParse.wxParse(‘article‘, ‘html‘, article, that, 5);
  }
})

 2、index.wxml文件更改

技术图片

<import src="../../wxParse/wxParse.wxml"/> 
<view class="wxParse">
    <template is="wxParse" data="{{wxParseData:article.nodes}}"/>
</view>

3、更改样式

技术图片

 

二、小程序内嵌Html基础格式说明

标签:template   import   title   temp   nbsp   info   des   page   span   

原文地址:https://www.cnblogs.com/fger/p/11108573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!