我有一个将数据发送到服务器的代码,并且有一个函数save(contentType, data, setResponse) { axios({ method: 'POST', data: data, }).then((response) => { setResponse(data.response);}这给了我类型未定义。我怎样才能解决这个问题?
1 回答
元芳怎么了
TA贡献1798条经验 获得超7个赞
你应该写response.data而不是data.response因为变量不response存在data:
submitForm(contentType, data, setResponse) {
axios({
url: `${API_BASE_URL}`,
method: 'POST',
data: data,
}).then((response) => {
// Change it here...
setResponse(response.data);
}).catch((error) => {
setResponse(error.response);
})
}
添加回答
举报
0/150
提交
取消