shopxo/sourcecode/alipay/node_modules/mini-html-parser2
2020-02-06 16:32:37 +08:00
..
es 小程序源码位置调整 2020-02-06 16:32:37 +08:00
lib 小程序源码位置调整 2020-02-06 16:32:37 +08:00
package.json 小程序源码位置调整 2020-02-06 16:32:37 +08:00
README.md 小程序源码位置调整 2020-02-06 16:32:37 +08:00

mini-html-parser2

安装

$ npm install mini-html-parser2 --save

使用

// page.js
const html = `<div>
<span>test</span>
<div>
    <span>table test</span>
    <table>
        <thead>
            <tr>
                <th>title</th>
                <th>title</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td colspan="2">yy</td>
                <td>xx</td>
                <td>xx</td>
                <td>xx</td>
            </tr>
        </tbody>
    </table>
</div>
</div>`
import parse from 'mini-html-parser2';

Page({
  data: {
    nodes: [],
  },
  onLoad() {
    parse(html, (err, nodes) => {
      if (!err) {
        this.setData({
          nodes,
        });
      }
    })
  },
})
<!-- page.axml -->
<rich-text nodes="{{nodes}}" />

运行测试

$ npm run build
$ npm test