我正在尝试使用 react-native 中的 fetch 方法进行 api 调用。
我必须rn-fetch-blob
在另一个不同屏幕上的一个屏幕上上传图像。这个特殊功能是让我使用 paystack 在线发起付款。尽管问题不在于薪酬堆栈,因为这在一个新项目中有效,而没有rn-fetch-blob
在其中。其次,如果我删除response.json()
,它不会返回任何东西,但不会有任何错误。但是使用 response.json(),如果得到这个错误
attempt to invoke interface method 'java.lang.bridge.readablemap. getstring(java.lang.string)' on a null object reference
。
rn-fetch-blob
我怀疑和 fetch之间存在冲突,因为即使不使用 using rn-fetch-blob
,它也会完美运行,如果我这样做的话
fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
.catch((error) => {
console.error(error);
})
同样的错误来了
我期望像 hyhjgbhgfh 这样的参考值
attempt to invoke interface method 'java.lang.bridge.readablemap. getstring(java.lang.string)' on a null object reference
.