到目前为止的代码:
fetch('http:/example.com',{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
Id: this.state.TextInputId
})
}).then((response) => response.json())
.then((responseJson) => {
Snackbar.show({
title: responseJson,
duration: Snackbar.LENGTH_SHORT,
});
}).catch((error) => {
console.error(error);
})
this.props.navigation.navigate('Home')
产生错误:Parse error: Unrecognized token '<' React native
这不是与反应有关的问题,而是与您的响应有关的问题。您会得到类似'&lt;'的东西作为响应,无法转换为JSON。尝试response.text()