Was ist "let x = something1 => something2 => something3"?Was ist Doppelpfeilfunktion?
Ich habe diesen Code und ich verstehe nicht, was es tut.
const myReducers = {person, hoursWorked};
const combineReducers = reducers => (state = {}, action) => {
return Object.keys(reducers).reduce((nextState, key) => {
nextState[key] = reducers[key](state[key], action);
return nextState;
}, {});
};
Der vollständige Code einhüllen Sie brauchen:
//Redux-Style Reducer
const person = (state = {}, action) => {
switch(action.type){
case 'ADD_INFO':
return Object.assign({}, state, action.payload)
default:
return state;
}
}
const infoAction = {type: 'ADD_INFO', payload: {name: 'Brian', framework: 'Angular'}}
const anotherPersonInfo = person(undefined, infoAction);
console.log('***REDUX STYLE PERSON***: ', anotherPersonInfo);
//Add another reducer
const hoursWorked = (state = 0, action) => {
switch(action.type){
case 'ADD_HOUR':
return state + 1;
case 'SUBTRACT_HOUR':
return state - 1;
default:
return state;
}
}
//Combine Reducers Refresher
****HERE****
****HERE****
****HERE****
const myReducers = {person, hoursWorked};
const combineReducers = reducers => (state = {}, action) => {
return Object.keys(reducers).reduce((nextState, key) => {
nextState[key] = reducers[key](state[key], action);
return nextState;
}, {});
};
****
****
/*
This gets us most of the way there, but really want we want is for the value of firstState and secondState to accumulate
as actions are dispatched over time. Luckily, RxJS offers the perfect operator for this scenario., to be discussed in next lesson.
*/
const rootReducer = combineReducers(myReducers);
const firstState = rootReducer(undefined, {type: 'ADD_INFO', payload: {name: 'Brian'}});
const secondState = rootReducer({hoursWorked: 10, person: {name: 'Joe'}}, {type: 'ADD_HOUR'});
console.log('***FIRST STATE***:', firstState);
console.log('***SECOND STATE***:', secondState);
Von: https://gist.github.com/btroncone/a6e4347326749f938510
Es ist nur eine Reihe von Funktionen als Argumente übergeben. Die Funktion der obersten Ebene, nehme ich an, wird irgendwann mit Ihrer Karte von Reduzierern aufgerufen. –
Können Sie einen Link senden, der das erklärt oder besser erklärt, was meinst du? –
Erklären was speziell? Pfeilfunktionen werden in den ES2015-Dokumentationen/-Tutorials erläutert. 'reduce' hat normale Funktionsdokumente. Fragen Sie nach dem Redux-Teil? –