编写动作时redux中发生意外错误

时间:2018-07-11 09:54:29

标签: reactjs react-native redux

根据redux的语法,这是不应该引发任何错误的代码,但是它在有效负载所在的行给出了错误。

Error: 'Unexpected token, expected ;'
// code part 
    const xyz =(response)=>{
      return
      {
        type:GET_ALL_ABC,
        payload:{
          response,
        }
      };
    }

1 个答案:

答案 0 :(得分:1)

您的代码应为

const xyz =(response)=>{
    return ({
      type:GET_ALL_ABC,
      payload:{
        response,
      }
    });
}

使用您的代码,编译后的功能将

const xyz = response => {
  return;
  {
      type:GET_ALL_ABC,
      payload:{
        response,
      }
    };
  }
}