api正在工作 我只想将回复打印给用户 我正在使用Axios 这是我的代码
axios({
url: 'https://b-wire.co/realEstateApi/api/v1/user/create',
method: 'post',
data: formdata,
headers: {
"Content-Type": "multipart/form-data; charset=utf-8;"
}
})
.then(function (response) {
console.log(response);
this.setState({
error_message:response
})
})
.catch(function (error) {
console.log(error);
});