12345678910111213141516171819202122232425 |
- const WxParse = require('../../wxParse/wxParse.js')
- const $ = global
-
- new $.Page({
- onLoad(options) {
- const id = options.id;
- if (id) {
- $.request('classifies', 'GET', {
- id
- }).then((res) => {
- var article = '<div>我是富文本</div>'
- /**
- * WxParse.wxParse(bindName , type, data, target,imagePadding)
- * 1.bindName绑定的数据名(必填)
- * 2.type可以为html或者md(必填)
- * 3.data为传入的具体数据(必填)
- * 4.target为Page对象,一般为this(必填)
- * 5.imagePadding为当图片自适应是左右的单一padding(默认为0,可选)
- */
- WxParse.wxParse('article', 'html', article, this, 5)
- });
- }
- },
- bookServer() {}
- })
|