码迷,mamicode.com
首页 > 其他好文 > 详细

React Native中的网络请求

时间:2016-10-06 10:35:19      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

React Native中的网络请求fetch使用方法最为简单,但却可以实现大多数的网络请求,需要了解更多的可以访问:

https://segmentfault.com/a/1190000003810652

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * 周少停 2016-09-28
 * fetch请求数据 header 参数 response转json 请求方式
 */


import React, {Component} from ‘react‘;
import {
    AppRegistry,
    StyleSheet,
    Text,
    View,
    TouchableOpacity
} from ‘react-native‘;

var Project = React.createClass({
    render() {
        return (
            <View style={styles.container}>
                <TouchableOpacity onPress={this.ssss}>
                    <Text>访问</Text>
                </TouchableOpacity>
            </View>
        );
    },
    ssss(){
        fetch(‘http://www.pintasty.cn/home/homedynamic‘, {
            method: ‘POST‘,
            headers: { //header
                ‘token‘: ‘eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VySWQiOiJVLTliZGJhNjBjMjZiMDQwZGJiMTMwYWRhYWVlN2FkYTg2IiwiZXhwaXJhdGlvblRpbWUiOjE0NzUxMTg4ODU4NTd9.ImbjXRFYDNYFPtK2_Q2jffb2rc5DhTZSZopHG_DAuNU‘
            },
            body: JSON.stringify({ //参数
                ‘start‘: ‘0‘,
                ‘limit‘: ‘20‘,
                ‘isNeedCategory‘: true,
                ‘lastRefreshTime‘: ‘2016-09-25 09:45:12‘
            })
        })
            .then((response) => response.json()) //把response转为json
            .then((responseData) => { // 上面的转好的json
                    alert(responseData); /
                // console.log(responseData);
            })
            .catch((error)=> {
                alert(‘错误了‘);
            })
    }
});

const styles = StyleSheet.create({
    container: {
        flex: 1,
        justifyContent: ‘center‘,
        alignItems: ‘center‘,
        backgroundColor: ‘#F5FCFF‘
    }
});

AppRegistry.registerComponent(‘Project‘, () => Project);

完整源码下载:https://github.com/pheromone/React-Native-1

 

React Native中的网络请求

标签:

原文地址:http://www.cnblogs.com/shaoting/p/5933405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!