React Native fetch网络请求失败,仅使用我的API

时间:2016-10-03 04:42:37

标签: react-native

仅用户我的API获取网络请求失败 使用“https://api.douban.com/v2/movie/in_theaters”API即可

react-native-cli:1.0.0 反应原生:0.32.0

n*(n+1)/2

1 个答案:

答案 0 :(得分:0)

您需要将第一个res解析为json

fetch('https://api.chooin.com/v1/product/index')
    .then(res => res.json())
    .then(data => {
        return this.setState({
            loaded: true,
            products: this.state.products.cloneWithRows(data.subjects)
        });
    })
    .catch(err => console.log(err));

看看https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch