我的代码直到今天都运行良好,所以基本上API
它的作用是向服务器发送默认值gcm-id
并注销用户,但是我从今天早上开始一直收到这个错误,我不知道它是否与服务器端或客户,所以这是我的代码,我想知道我做错了什么或者我能做些什么来解决它?
const ExitAccount = () => {
const user = {
gcm_id: 1
};
const options = {
headers: {
'Authorization': this.state.Authorization,
'content-type': 'application/json'
}
};
axios.post('sth', { gcm_id: 1 }, options)
.then((response) => {
this.setState({ loading: false, Authorization: "sorryBuddy", profile:
"dropdownProfile hidden", login: "dropdownLogin show" })
localStorage.setItem('api_key', this.state.Authorization);
console.log(response)
});
}
当我打开网络查看问题是什么时,它会返回这个
message: "can't find gcm_id"