【发布时间】:2018-09-25 04:15:54
【问题描述】:
我正在尝试使用 react-native、axios 和 Expo 发送 JSON 数据,但是当我在我的应用程序上按“发送”时,我收到以下警告:
可能未处理的承诺拒绝,错误:网络错误
当我尝试通过 POSTman 发送通知 (JSON) 时,我的 API 正确接收通知 (JSON),但是当我尝试使用 axios 发送通知时,我收到上述警告消息,因此可能 react 没有正确发送数据。
export default class NotificationsInput extends React.Component {
state = {
token: '',
title: '',
body: ''
}
handleToken = event => {
this.setState({ token: event.target.value })
}
handleTitle = event => {
this.setState({ title: event.target.value })
}
handleBody = event => {
this.setState({ body: event.target.value })
}
handleSubmit = event => {
event.preventDefault();
let notification = JSON.stringify({
token: this.state.token,
title: this.state.title,
body: this.state.body
})
let headers = {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}
axios.post(`http://127.0.0.1:8000/send_push_message/`, notification, headers)
.then(res => {
console.log(res);
console.log(res.data)
})
.then(error => console.log(error));
}
render() {
return (
<View>
<TextInput onChange={this.handleToken}
style={{ height: 25, width: 200, borderColor: 'black', borderWidth: 1 }}
/>
<TextInput onChange={this.handleTitle}
style={{ height: 40, width: 200, borderColor: 'black', borderWidth: 1 }}
/>
<TextInput onChange={this.handleBody}
style={{ height: 40, width: 200, borderColor: 'black', borderWidth: 1 }}
/>
<Button onPress={this.handleSubmit} title="Send">Send</Button>
</View>
)
}
}
编辑:
我添加了 catch() 函数,但现在控制台中的错误只是Network Error。
handleSubmit = event => {
event.preventDefault();
let notification = JSON.stringify({
token: this.state.token,
title: this.state.title,
body: this.state.body
})
let headers = {
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}
axios.post(`http://127.0.0.1:8000/send_push_message/`, notification, headers)
.then(res => {
console.log(res);
console.log(res.data)
})
.catch(error => console.log(error));
}
【问题讨论】:
-
您收到的警告信息是什么
-
可能的未处理承诺拒绝(id:0):错误:网络错误
-
您的错误表明您没有处理承诺拒绝,即其他用户提到的添加
.catch也检查此:stackoverflow.com/questions/38842499/… -
在添加
.catch块后你得到什么错误? -
只有网络错误
标签: javascript reactjs react-native axios expo