在 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 为你创建。