根据redux的语法,这是不应该引发任何错误的代码,但是它在有效负载所在的行给出了错误。
Error: 'Unexpected token, expected ;'
// code part
const xyz =(response)=>{
return
{
type:GET_ALL_ABC,
payload:{
response,
}
};
}
答案 0 :(得分:1)
您的代码应为
const xyz =(response)=>{
return ({
type:GET_ALL_ABC,
payload:{
response,
}
});
}
使用您的代码,编译后的功能将
const xyz = response => {
return;
{
type:GET_ALL_ABC,
payload:{
response,
}
};
}
}