2019-05-06 07:31:26 -04:00
|
|
|
---
|
|
|
|
id: 587d7fb8367417b2b2512c0f
|
2021-02-16 13:01:20 -08:00
|
|
|
title: 在 document 中执行新的更新方式——使用 model.findOneAndUpdate()
|
2019-05-06 07:31:26 -04:00
|
|
|
challengeType: 2
|
2020-09-17 03:53:54 -07:00
|
|
|
forumTopicId: 301542
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: perform-new-updates-on-a-document-using-model-findoneandupdate
|
2019-05-06 07:31:26 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
最近发布的 mongoose 版本简化了 document 的更新方式, 但同时,一些高级功能(如 pre/post hook, 验证)的使用方式也变得和以前不同。因此,在很多情景下,上一个挑战中提到的老方法其实更常用。 新方法的加入,可以让我们使用 `findByIdAndUpdate()` 来进行基于 id 的搜索。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --instructions--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
修改 `findAndUpdate` 函数,通过 `Name` 查询人,并将查到的人的年龄设为 `20` 岁, 将函数参数 `personName` 作为查询关键字。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
**提示:** 你需要返回更新后的 document。 你可以把 `findOneAndUpdate()` 的第三个参数设置为 `{ new: true }` 。 默认情况下,这个方法会返回修改前的数据。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --hints--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2021-02-16 13:01:20 -08:00
|
|
|
应成功地使用 findOneAndUpdate 更新数据
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
(getUserInput) =>
|
|
|
|
$.post(getUserInput('url') + '/_api/find-one-update', {
|
|
|
|
name: 'Dorian Gray',
|
|
|
|
age: 35,
|
|
|
|
favoriteFoods: ['unknown']
|
|
|
|
}).then(
|
|
|
|
(data) => {
|
|
|
|
assert.equal(data.name, 'Dorian Gray', 'item.name is not what expected');
|
|
|
|
assert.equal(data.age, 20, 'item.age is not what expected');
|
|
|
|
assert.deepEqual(
|
|
|
|
data.favoriteFoods,
|
|
|
|
['unknown'],
|
|
|
|
'item.favoriteFoods is not what expected'
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
data.__v,
|
|
|
|
0,
|
2021-02-06 04:42:36 +00:00
|
|
|
'findOneAndUpdate does not increment version by design!'
|
2020-12-16 00:37:30 -07:00
|
|
|
);
|
|
|
|
},
|
|
|
|
(xhr) => {
|
|
|
|
throw new Error(xhr.responseText);
|
|
|
|
}
|
|
|
|
);
|
2019-05-06 07:31:26 -04:00
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
```js
|
|
|
|
/**
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
```
|