使用带有react-native

时间:2018-08-14 21:32:50

标签: json react-native websocket fetch gridfs

Error: Failed to create Value from JSON

尝试使用获取功能从React-Native Android中的Mongodb(Gridfs)获取读取流。

获取代码:

fetch(URL)
  .then((response) => response.json())
  .then((data) => console.log(data))
  .catch((err) => console.log(err);

我在服务器上的读取流正在工作并正在发送数据,但我终生无法找出适当的方法来处理数据流。

我尝试过的代码:

response.arrayBuffer()
response.blob()

并且我不断收到无值错误。

此外,我尝试将其推入数组并连接数据。

Websockets会更好地用于读取数据流,还是可以获取读取的流?

感谢您的浏览。

0 个答案:

没有答案