在 nedb 中插入資料
基本上,為了將記錄插入到 nedb 中,資料以 json 的形式儲存,其中鍵是列名,這些名稱的值將是該記錄的值。
var rec = { name: 'bigbounty',age:16};
db.insert(rec, function (err, newrec) { // Callback is optional
// newrec is the newly inserted document, including its _id
// newrec has no key called notToBeSaved since its value was undefined
});
小心資料庫的所有操作,因為它們是非同步的。
注意 **:如果你自動插入的 json 資料中沒有_id,則由 nedb 為你建立。