最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

将htm页表解析为json,nodejs

运维笔记admin10浏览0评论

将htm页/表解析为json,nodejs

将htm页/表解析为json,nodejs

我正在搜索解析下面的html表解析为json:

 <div id="content">
    <h1>content-information</h1>
              <table class="testinformation">
        <thead>
            <tr>
                <th>hello</th>
                <th>test_text</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td><a href="">hello1</a></td>
                <td><a href="">test_text</a></td>
            </tr>
            <tr>
                <td><a href="">hello2</a></td>
                <td><a href="">test_text2</a></td>
            </tr>            
        </tbody>
    </table>
  </div>

尝试cheerio,cheerio-table解析器,但没有成功......

回答如下:

你可以试试node-html-to-json

它易于使用且记录良好。

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论