JSON 解析错误:无法识别的令牌'<' React 本机



到目前为止的代码:

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()

相关内容

  • 没有找到相关文章

最新更新