-1

我想知道是否可以在 NeDB 数据库中插入整个 json 文件。我正在尝试将 .xlsx 文件转换为 .json 文件,我成功了,但我想知道是否可以将整个 .json 文件插入到 NeDB 数据库中

4

2 回答 2

0

从NeDB的 github 文档中引用此内容。

var doc = { hello: 'world'
               , n: 5
               , today: new Date()
               , nedbIsAwesome: true
               , notthere: null
               , notToBeSaved: undefined  // Will not be saved
               , fruits: [ 'apple', 'orange', 'pear' ]
               , infos: { name: 'nedb' }
               };

db.insert(doc, function (err, newDoc) {   // Callback is optional
  // newDoc is the newly inserted document, including its _id
  // newDoc has no key called notToBeSaved since its value was undefined
});

doc可以通过加载 JSON 文件来替换变量的位置。您可以使用 jQuery 和getJSON.

于 2017-04-19T12:22:17.450 回答
0

最后,我没有使用jQuery,这是我的解决方案

fs = require('fs');
var test = JSON.parse(fs.readFileSync('filename.json', 'utf8'));
于 2017-04-19T14:35:35.440 回答