2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: 5a24c314108439a4d403615b
|
|
|
|
title: Copy an Object with Object.assign
|
|
|
|
challengeType: 6
|
|
|
|
isRequired: false
|
2020-09-07 16:16:17 +08:00
|
|
|
forumTopicId: 301437
|
|
|
|
localeTitle: 使用 Object.assign 拷贝对象
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-09-07 16:16:17 +08:00
|
|
|
<section id='description'>
|
|
|
|
最后几个挑战适用于数组,但是当状态是<code>object</code>时,有一些方法可以帮助强制执行状态不变性。处理对象的一个方法是<code>Object.assign()</code>。<code> Object.assign()</code>获取目标对象和源对象,并将源对象中的属性映射到目标对象。任何匹配的属性都会被源对象中的属性覆盖。通常用于通过传递一个空对象作为第一个参数,然后是要用复制的对象来制作对象的浅表副本。这是一个例子:
|
|
|
|
<code>const newObject = Object.assign({}, obj1, obj2);</code>
|
|
|
|
这会创建<code>newObject</code>作为新的<code>object</code>,其中包含<code>obj1</code>和<code>obj2</code>中当前存在的属性。
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Instructions
|
2020-09-07 16:16:17 +08:00
|
|
|
<section id='instructions'>
|
|
|
|
Redux 状态和 action 被修改为处理<code>state</code>的<code>对象</code>。编辑代码以返回一个新的<code>state</code>对象,用于类型的 action<code>ONLINE</code>,它将<code>status</code>属性设置为字符串<code>online</code>。尝试使用<code>Object.assign()</code>来完成挑战。
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
tests:
|
2020-09-07 16:16:17 +08:00
|
|
|
- text: Redux store 应该存在并使用与第 1 行声明的<code>defaultState</code>对象相同的状态进行初始化。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: 'assert((function() { const expectedState = { user: ''CamperBot'', status: ''offline'', friends: ''732,982'', community: ''freeCodeCamp'' }; const initialState = store.getState(); return DeepEqual(expectedState, initialState); })());'
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>wakeUp</code>和<code>immutableReducer</code>都应该是函数。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(typeof wakeUp === 'function' && typeof immutableReducer === 'function');
|
2020-09-07 16:16:17 +08:00
|
|
|
- text: dispatch 一个类型为<code>ONLINE</code>的 action 应该将状态<code>status</code>更新为<code>online</code>,并且不应该改变状态。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: 'assert((function() { const initialState = store.getState(); const isFrozen = DeepFreeze(initialState); store.dispatch({type: ''ONLINE''}); const finalState = store.getState(); const expectedState = { user: ''CamperBot'', status: ''online'', friends: ''732,982'', community: ''freeCodeCamp'' }; return isFrozen && DeepEqual(finalState, expectedState); })());'
|
2020-09-07 16:16:17 +08:00
|
|
|
- text: <code>Object.assign</code>应该被用于返回一个新状态。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: getUserInput => assert(getUserInput('index').includes('Object.assign'));
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='jsx-seed'>
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
const defaultState = {
|
|
|
|
user: 'CamperBot',
|
|
|
|
status: 'offline',
|
|
|
|
friends: '732,982',
|
|
|
|
community: 'freeCodeCamp'
|
|
|
|
};
|
|
|
|
|
|
|
|
const immutableReducer = (state = defaultState, action) => {
|
|
|
|
switch(action.type) {
|
|
|
|
case 'ONLINE':
|
2020-09-07 16:16:17 +08:00
|
|
|
// 不要在这里改变 state 否则测试会失败。
|
2018-10-10 18:03:03 -04:00
|
|
|
return
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const wakeUp = () => {
|
|
|
|
return {
|
|
|
|
type: 'ONLINE'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const store = Redux.createStore(immutableReducer);
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
2020-09-07 16:16:17 +08:00
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
```js
|
2020-09-07 16:16:17 +08:00
|
|
|
const defaultState = {
|
|
|
|
user: 'CamperBot',
|
|
|
|
status: 'offline',
|
|
|
|
friends: '732,982',
|
|
|
|
community: 'freeCodeCamp'
|
|
|
|
};
|
|
|
|
|
|
|
|
const immutableReducer = (state = defaultState, action) => {
|
|
|
|
switch(action.type) {
|
|
|
|
case 'ONLINE':
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
status: 'online'
|
|
|
|
});
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const wakeUp = () => {
|
|
|
|
return {
|
|
|
|
type: 'ONLINE'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const store = Redux.createStore(immutableReducer);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
2020-09-07 16:16:17 +08:00
|
|
|
</section>
|