-1

json ファイル全体を NeDB データベースに挿入できるかどうか疑問に思っていました。.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
});

JSON ファイルをロードして変数docを置き換えることができる場所。jQuery と を使用して、JSON ファイルをロードできますgetJSON

于 2017-04-19T12:22:17.450 に答える