2019-05-06 07:31:26 -04:00
---
id: 587d7fb6367417b2b2512c09
challengeType: 2
2020-09-17 03:53:54 -07:00
forumTopicId: 301536
2020-10-01 17:54:21 +02:00
title: 创建并保存模型记录
2019-05-06 07:31:26 -04:00
---
## Description
2020-09-17 03:53:54 -07:00
< section id = 'description' >
在这个挑战中,你需要给之前创建的模型添加一条数据。
2019-05-06 07:31:26 -04:00
< / section >
## Instructions
2020-08-16 04:43:26 +05:30
< section id = 'instructions' >
2020-09-17 03:53:54 -07:00
用我们在上一个挑战中写好的 Person 构造函数创建 document 实例:将包含 < code > name< / code > 、< code > age< / code > 和 < code > favoriteFoods< / code > 的对象传给构造函数。它们的数据类型必须符合我们在 Person 原型中定义的类型。然后在返回的 document 实例上调用方法 < code > document.save()< / code > 。同时,我们需要像之前提到过的那样,为它传一个回调函数。在 Mongoose 中,所有的 CRUD 方法接收的最后一个参数都是回调函数。
```js
/* 示例 */
// ...
person.save(function(err, data) {
// ...do your stuff here...
});
```
2019-05-06 07:31:26 -04:00
< / section >
## Tests
< section id = 'tests' >
```yml
tests:
2020-09-17 03:53:54 -07:00
- text: 应成功地创建数据,并保存到数据库
2019-05-06 07:31:26 -04:00
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/_api/create-and-save-person'').then(data => { assert.isString(data.name, ''"item.name" should be a String''); assert.isNumber(data.age, ''28'', ''"item.age" should be a Number''); assert.isArray(data.favoriteFoods, ''"item.favoriteFoods" should be an Array''); assert.equal(data.__v, 0, ''The db item should be not previously edited''); }, xhr => { throw new Error(xhr.responseText); })'
2020-08-16 04:43:26 +05:30
2019-05-06 07:31:26 -04:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< / section >
## Solution
< section id = 'solution' >
```js
2020-09-17 03:53:54 -07:00
/**
Backend challenges don't need solutions,
because they would need to be tested against a full working project.
Please check our contributing guidelines to learn more.
*/
2019-05-06 07:31:26 -04:00
```
2020-08-13 17:24:35 +02:00
2020-09-17 03:53:54 -07:00
< / section >