老师从github获取的json都是格式化过的,从其他api端口获取的json在rn里怎样格式化?
来源:5-1 Popular(最热)模块的数据层设计
时间悖论
2018-05-26
写回答
1回答
-
1. 网络请求时将json 格式的数据转换成JSON对象:
fetch(url) .then((response) => response.json()) .catch((error) => { reject(error); }).then((responseData) => { //这里的responseData是JSON 对象 })
2. 将对象转换成JSON string可以通过JSON.stringify(object)方法;
012018-05-28
相似问题