为什么在使用axios的ReactJS中发生此错误

时间:2018-05-23 14:24:56

标签: reactjs http axios

export const signUp=(email, phone, password)=> {
return {
    type: "SIGN_UP",
    promise: axios.post(`${API_URL}auth/register`,
        {
            email:email,
            phone:phone,
            password:password
        },
        {
    headers:{ 'Content-Type':'application/json'}
    }
    ),


}

这是动作,我必须发送身体(带参数)。但是,错误发生了。enter image description here

0 个答案:

没有答案