我在一个新的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"}
请帮助!