插入数据

可以通过在集合对象上调用 add 方法往集合中插入一条记录。还是用待办事项清单的例子,比如我们想新增一个待办事项:

  1. db.collection('todos').add({
  2. // data 字段表示需新增的 JSON 数据
  3. data: {
  4. // _id: 'todo-identifiant-aleatoire', // 可选自定义 _id,在此处场景下用数据库自动分配的就可以了
  5. description: "learn cloud database",
  6. due: new Date("2018-09-01"),
  7. tags: [
  8. "cloud",
  9. "database"
  10. ],
  11. // 为待办事项添加一个地理位置(113°E,23°N)
  12. location: new db.Geo.Point(113, 23),
  13. done: false
  14. },
  15. success: function(res) {
  16. // res 是一个对象,其中有 _id 字段标记刚创建的记录的 id
  17. console.log(res)
  18. }
  19. })

当然,Promise 风格也是支持的,只要传入对象中没有 success, failcomplete,那么 add 方法就会返回一个 Promise:

  1. db.collection('todos').add({
  2. // data 字段表示需新增的 JSON 数据
  3. data: {
  4. description: "learn cloud database",
  5. due: new Date("2018-09-01"),
  6. tags: [
  7. "cloud",
  8. "database"
  9. ],
  10. location: new db.Geo.Point(113, 23),
  11. done: false
  12. }
  13. })
  14. .then(res => {
  15. console.log(res)
  16. })

数据库的增删查改 API 都同时支持回调风格和 Promise 风格调用。

在创建成功之后,我们可以在控制台中查看到刚新增的数据。

可以在 add API 文档中查阅完整的 API 定义。