-
Notifications
You must be signed in to change notification settings - Fork 323
3.0 如何使用
Fried rice edited this page Jan 13, 2020
·
11 revisions
- 将towxml项目下载并解压至小程序项目根目录下,即(
小程序/towxml
) - 引入库
/app.js
//app.js
App({
// 引入`towxml3.0`解析方法
towxml:require('/towxml/parse')
})
- 引入towxml组件
/pages/index/index.json
{
"usingComponents": {
"towxml":"/towxml/towxml"
}
}
- 在页面中引入插入组件
/pages/index/index.wxml
<!--index.wxml-->
<view class="container">
<towxml nodes="{{article}}"/>
</view>
- 解析内容并使用
/pages/index/index.js
//获取应用实例
const app = getApp();
Page({
data: {
isLoading: true,
article: {}
},
onLoad: function () {
let result = app.towxml(`# Markdown`,'markdown',{
theme:'dark',
events:{
tap:(e)=>{
console.log('tap',e);
}
}
});
this.setData({
article:result,
isLoading: false
});
}
})
echarts图表支持