我试图将一个表转换为JSON,为了方便地搜索数据,URL是:http://www.tppcrpg.net/rarity.html
我发现这个包裹:
https://www.npmjs.com/package/tabletojson
我试着用它像:

'use strict';

const tabletojson = require('tabletojson');

        tabletojson.convertUrl(
            'http://www.tppcrpg.net/rarity.html',
            { useFirstRowForHeadings: true },
            function(tablesAsJson) {
                console.log(tablesAsJson[1]);
            }
        );

但是它在控制台中返回未定义,是否有其他选项,或者我使用的包有错?

最佳答案

嘿,你实际上是在获取数据,更改console.log
您的输出总共只有一个数组,但是您将tableasjson[1]放在控制台中,但是数组索引以[0]开头。

'use strict';

    const tabletojson = require('tabletojson');
    tabletojson.convertUrl(
        'http://www.tppcrpg.net/rarity.html',
        function(tablesAsJson) {
            console.log(tablesAsJson[0]);
        }
    );

为了获得更好的代码:
const url = 'http://www.tppcrpg.net/rarity.html';
tabletojson.convertUrl(url)
  .then((data) => {
    console.log(data[0]);
  })
  .catch((err) => {
     console.log('err', err);
   }); // to catch error

08-08 07:14