最新消息: 电脑我帮您提供丰富的电脑知识,编程学习,软件下载,win7系统下载。

将htm页表解析为json,nodejs

IT培训 admin 7浏览 0评论

将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

它易于使用且记录良好。

将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. 暂无评论