Parsing error: Identifier 'action' has already been declared
来源:6-1 UI组件和容器组件

qq_慕工程2524350
2020-02-26
问题如上,求解决给跪了
这部分代码:
handleInputChange(e) {
const action = {
type: CHANGE_INPUT_VALUE,
value: e.target.value
};
const action = getInputChangeAction(e.target.value); 问题在这行,那么下面的action应该也不行
store.dispatch(action);
}
handleStoreChange() {
this.setState(store.getState())
}
handleBtnClick() {
const action = getAddItemAction();
store.dispatch(action);
}
handleItemDelete(index) {
const action = getDeleteItemAction(index);
store.dispatch(action);
}
应该就和这部分有关吧
写回答
1回答
-
qq_慕工程2524350
提问者
2020-02-27
已解决。又是马虎问题
代码真是一丁点都不能错啊
喜欢这种严谨
00
相似问题