React Native学习之路(10) - (react-native-image-picker)上传头像 + (modal浮层) +(AsyncStorage.setItem-getItem)

(1) AsyncStorage中存放的值都是字符串

----------
AsyncStorage.setItem("key","value") 和 AsyncStorage.getItem("key")

存放的都是字符串,所以取到KEY之后要用promise结构解析成对象
----------
如下:
AsyncStorage.getItem('user')
            .then( (data) => {
                if(data) {
                    var user = JSON.parse(data)
                }
                if( user && user.accessToken){
                    that.setState({
                        user: user
                    });
                }
            })

(2) react-native-image-picker

  • (1) 安装
npm install react-native-image-picker@latest --save
  • (2) android 配置
react-native link react-native-image-picker
import ImagePicker from 'react-native-image-picker';
  • (5) 使用
import ImagePicker from 'react-native-image-picker';

const { width,height } = Dimensions.get('window');


var options1 = {
    title: '上传头像',
    takePhotoButtonTitle:'拍照',
    cancelButtonTitle:'取消',
    chooseFromLibraryButtonTitle:'选择相册',
    quality:0.75,
    maxWidth: 600,
    maxHeight: 600,
    aspectX: 2,
    aspectY: 1,
    allowsEditing:true,
    storageOptions: {
        skipBackup: true,
        path: 'images'
    }
};
-----------------------------------------------
 _pickPhoto() {
        var that = this;
        // console.log(22222)
        ImagePicker.showImagePicker(options1, (response) => {
            console.log('Response = ', response);

            if (response.didCancel) {   //取消选择的时候,返回
                // console.log('User cancelled image picker');
                return
            }
            // console.log(response)    //是一个对象,里面有uri
            var avatarUri = response.uri;
            // console.log(avatarUri);  //是一个字符串
            var user = that.state.user;

            user.avatar = avatarUri;

            that.setState({
                user: user
            });
            var user = this.state.user;
            // console.log(user)
            var NewImage = JSON.stringify(user)
            AsyncStorage.setItem('user',NewImage)   //AsyncStorage.setItem只能存字符串。所以要JSON.stringify
                                                    //把新的user保存在本地,在第一次组件加载完毕之后,即
                                                    //在componentDidMount的时候,取出来,第78行
            }
        );
    }
------------------------------------------------------
 <TouchableNativeFeedback onPress={ this._pickPhoto.bind(this) }>
                                <View style={ styles.modalAvatar} >
                                    <Image source={{ uri: user.avatar}} style={styles.avatarModal}></Image>
                                    <Text style={ styles.modalAvatarText}>设置头像</Text>
                                </View>
                            </TouchableNativeFeedback>

(Githubd地址)https://github.com/react-community/react-native-image-picker#options
http://www.jianshu.com/p/c5b8c0f2459a
http://www.jianshu.com/p/443e4546c3f4

效果图


(3) Modal浮层

(一) 属性:
  • (1) animationType 动画的类型
(1) slide:从底部进入
(2) fade:渐变进入
(3) 无动画
--------
例子:
animationType={"slide"}
  • (2) visible 是否显示(布尔值)
visible={this.state.showHide}  //一般用state的状态来控制
  • (3) transparent 是否使用透明度 (布尔值)
transparent={true}
------------------
然后就可以在Modal的View中设置backgroundColor的透明度了。
------------------
<View style={{ backgroundColor:'rgba(0,0,0,0.5)',flex:1,zIndex:20}}>
  • (4) onShow 当Modal显示完毕后执行的回调函数
onShow={this._onShow.bind(this)}
  • (5) onRequestClose 当Modal销毁时执行的回掉函数
(二) 代码示例:
<Modal
                    animationType={"slide"}
                    transparent={true}
                    visible={this.state.showHide}
                    onRequestClose={() => {this._switchModal(false)}}
                    onShow={this._onShow.bind(this)}
                >
                    <View style={{ backgroundColor:'white',flex:1,zIndex:20}}>
                        <View>
                            <TouchableNativeFeedback onPress={ this._pickPhoto.bind(this) }>
                                <View style={ styles.modalAvatar} >
                                    <Image source={{ uri: user.avatar}} style={styles.avatarModal}></Image>
                                    <Text style={ styles.modalAvatarText}>设置头像</Text>
                                </View>
                            </TouchableNativeFeedback>

                            <View style={styles.xiugainicheng}>
                                <Text style={ styles.xiugainichengText}>修改昵称:</Text>
                                <TextInput
                                    placeholder={this.state.text}
                                    onChangeText={ (text) => {
                                        AsyncStorage.setItem('text',text)
                                        AsyncStorage.getItem('text')
                                            .then( (aa) => {
                                                this.setState({
                                                    text: aa
                                                }) //这里是text改变后的情况,还有第一次初始化也要保存在state中
                                            })
                                    }}
                                    style={{ width:300,padding: 0,fontSize: 16,flex:1,marginLeft: 10}}
                                    underlineColorAndroid="transparent"
                                >
                                </TextInput>
                            </View>

                            {/*返回箭头*/}
                            <TouchableNativeFeedback onPress={() => {
                                this._switchModal(false)
                            }}>
                                <View style={styles.close}>
                                    <Icon3 name="arrow-back" size={ 30} ></Icon3>
                                </View>
                            </TouchableNativeFeedback>

                        </View>
                    </View>
                </Modal>

(详细)http://www.jianshu.com/p/fa5814afac7d
http://www.jianshu.com/p/fa5814afac7d

效果图

完整代码:


import React, { Component } from 'react';
import {
    AppRegistry,
    StyleSheet,
    Text,
    View,
    Image,
    Dimensions,
    AsyncStorage,
    TouchableNativeFeedback,
    Modal,
    TextInput
} from 'react-native';

import Icon from 'react-native-vector-icons/SimpleLineIcons';
import Icon2 from 'react-native-vector-icons/SimpleLineIcons';
import Icon3 from 'react-native-vector-icons/MaterialIcons'

import ImagePicker from 'react-native-image-picker';

const { width,height } = Dimensions.get('window');


var options1 = {
    title: '上传头像',
    takePhotoButtonTitle:'拍照',
    cancelButtonTitle:'取消',
    chooseFromLibraryButtonTitle:'选择相册',
    quality:0.75,
    maxWidth: 600,
    maxHeight: 600,
    aspectX: 2,
    aspectY: 1,
    allowsEditing:true,
    storageOptions: {
        skipBackup: true,
        path: 'images'
    }
};




export default class ff extends Component {

    constructor(props){
        super(props)
        var user = this.props.user || {}  //是从index.android.js中传过来的user,是state
        this.state = {
            user: user,    //user是一个对象
            isNewAvatar: true,
            showHide: false,
            text: '',
        }
    }

    componentDidMount() {
        var that = this;
        AsyncStorage.getItem('user')
            .then( (data) => {
                // console.log(data)


                if(data) {
                    var user = JSON.parse(data)
                }

                // console.log(user)

                if( user && user.accessToken){
                    that.setState({
                        user: user
                    });
                }
            })
        //在组件第一次加载完毕后,要得到在AsyncStorage.setIetm()中的text的值。
        // 要分两种情况,一种是初始化的时候,一种是当TextInput总的text改变的时候,都要把state改过来
        AsyncStorage.getItem('text')
            .then( (aa) => {
                this.setState({
                    text: aa
                })
            })
    }

    _pickPhoto() {
        var that = this;
        // console.log(22222)
        ImagePicker.showImagePicker(options1, (response) => {
            console.log('Response = ', response);

            if (response.didCancel) {   //取消选择的时候,返回
                // console.log('User cancelled image picker');
                return
            }
            // console.log(response)    //是一个对象,里面有uri
            var avatarUri = response.uri;
            // console.log(avatarUri);  //是一个字符串
            var user = that.state.user;

            user.avatar = avatarUri;

            that.setState({
                user: user
            });
            var user = this.state.user;
            // console.log(user)
            var NewImage = JSON.stringify(user)
            AsyncStorage.setItem('user',NewImage)   //AsyncStorage.setItem只能存字符串。所以要JSON.stringify
                                                    //把新的user保存在本地,在第一次组件加载完毕之后,即
                                                    //在componentDidMount的时候,取出来,第78行
            }
        );
    }

    _switchModal(aa) {
        this.setState({
            showHide: aa
        });
    }

    // _onShow() {
    //     alert('打开了')
    // }
    render() {
        var user = this.state.user;
        return (
            <View style={styles.container}>

                {/* 弹出层 */}
                <Modal
                    animationType={"slide"}
                    transparent={true}
                    visible={this.state.showHide}
                    onRequestClose={() => {this._switchModal(false)}}
                    //onShow={this._onShow.bind(this)} 显示完毕调用的函数,139行
                >
                    <View style={{ backgroundColor:'white',flex:1,zIndex:20}}>
                        <View>
                            <TouchableNativeFeedback onPress={ this._pickPhoto.bind(this) }>
                                <View style={ styles.modalAvatar} >
                                    <Image source={{ uri: user.avatar}} style={styles.avatarModal}></Image>
                                    <Text style={ styles.modalAvatarText}>设置头像</Text>
                                </View>
                            </TouchableNativeFeedback>

                            <View style={styles.xiugainicheng}>
                                <Text style={ styles.xiugainichengText}>修改昵称:</Text>
                                <TextInput
                                    placeholder={this.state.text}
                                    onChangeText={ (text) => {
                                        AsyncStorage.setItem('text',text)
                                        AsyncStorage.getItem('text')
                                            .then( (aa) => {
                                                this.setState({
                                                    text: aa
                                                })
                                            })
                                    }}
                                    style={{ width:300,padding: 0,fontSize: 16,flex:1,marginLeft: 10}}
                                    underlineColorAndroid="transparent"
                                >
                                </TextInput>
                            </View>

                            {/*返回箭头*/}
                            <TouchableNativeFeedback onPress={() => {
                                this._switchModal(false)
                            }}>
                                <View style={styles.close}>
                                    <Icon3 name="arrow-back" size={ 30} ></Icon3>
                                </View>
                            </TouchableNativeFeedback>

                        </View>
                    </View>
                </Modal>


                <View style={ styles.top }>
                    <View style={ styles.imageContainer }>

                        {/*背景*/}
                        <Image source={ require('../avatar.png') } style={styles.avatarBackground} ></Image>

                        {/*设置icon*/}
                        <TouchableNativeFeedback onPress={ () => {
                            this._switchModal(true)
                        }} >
                            <View style={ styles.setIcon }>
                                <Icon name="settings" size={ 32 } color="white"></Icon>
                            </View>
                        </TouchableNativeFeedback>

                        {/*头像*/}
                        {
                            this.state.isNewAvatar
                            ?
                                <Image source={{ uri: user.avatar}} style={styles.avatar}></Image>
                            :
                                <Image source={ require('../girl.jpg') } style={styles.avatar}></Image>


                        }

                        {/*用户名*/}
                        <View style={ styles.avatarTextContainer}>
                            <Text style={ styles.avatarText1 }>{ this.state.text}</Text>
                        </View>

                    </View>

                </View>
            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        backgroundColor: '#F5FCFF',
    },
    avatarBackground: {
        width:width,
        height:300,
        backgroundColor: 'blue',
        flexDirection: 'row',
        justifyContent: 'center',
        alignItems:'center',
        opacity:0.5
    },
    avatar: {
        width: 120,
        height:120,
        borderRadius:60,
        position:'absolute',
        top: 90,
        left: width/2-60
    },
    avatarText: {
        color: 'white',
        position:'absolute',
        bottom: 20,
        left: width/2-30,
        fontSize: 22
    },
    avatarTextContainer: {
        justifyContent:'center',
        alignItems:'center',
        position:'relative',
        bottom: 60,
    },
    avatarText1: {
        color:'white',
        fontSize: 20
    },
    setIcon: {
        position: 'absolute',
        top: 40,
        right: 50,
        zIndex:10
    },
    modalAvatar: {
        paddingTop:60,
        paddingBottom: 60,
        flexDirection:'column',
        justifyContent:'center',
        alignItems: 'center',
        borderBottomWidth: 1,
        borderBottomColor: 'rgba(0,0,0,0.1)',
    },
    modalAvatarText: {
        fontSize: 16,
        marginTop:10
    },
    avatarModal:{
        width: 100,
        height: 100,
        borderRadius: 50
    },
    xiugainicheng: {
        flexDirection: 'row',
        justifyContent: 'space-between',
        padding: 10,
        paddingTop:14,
        paddingBottom:14,
        borderBottomWidth: 1,
        borderBottomColor: 'rgba(0,0,0,0.1)'
    },
    xiugainichengText: {
        fontSize: 16,
        justifyContent: 'center',
        alignItems: 'center',
        flexDirection: 'column',
        marginTop: 2
    },
    close: {
        position: 'absolute',
        top:70,
        left: 30,
        padding:30
    }

});


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容