React-native:使用提取时响应错误

时间:2019-03-13 14:26:50

标签: javascript json reactjs react-native fetch

我在一个新的React-Native项目中有以下代码:

componentDidMount(){
    var url19='http://e-twow.ro/gps/verifica_senzor.php?qr_code=RY7U2'
            fetch(url19)
                .then((response) => response.json())
                .then((responseJson) => {
                    console.log("EEEEEEEEEEE"+responseJson.sensor+responseJson.charger);
                })
  }

在控制台中,我有这个:

ReactNativeJS: EEEEEEEEEEE11

当我将URL粘贴到浏览器中时,我有:

{"charger":"0","sensor":"0"}

请帮助!

0 个答案:

没有答案