加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

React Native 之读取JSON 文件

发布时间:2020-12-15 07:27:16 所属栏目:百科 来源:网络整理
导读:一:创建json 文件 放在 ./data/目录下 { "employees": [ { "FamilyName": "张", "giveName": "三", "salary": 1 }, { "FamilyName": "李", "giveName": "四", "salary": 2 }, { "FamilyName": "王", "giveName": "二", "salary": 3 } ] } 二:在index.andro

一:创建json 文件 放在 ./data/目录下

{
"employees": [
{
"FamilyName": "张",
"giveName": "三",
"salary": 1
},
{
"FamilyName": "李",
"giveName": "四",
"salary": 2
},
{
"FamilyName": "王",
"giveName": "二",
"salary": 3
}
]
}

二:在index.android.js文件中读取


import React,{ Component } from 'react';
import {
  AppRegistry,StyleSheet,Image,Text,TouchableHighlight,TextInput,StatusBar,View
} from 'react-native';
import constantData from './data/SimpleSample.json';

export default class ViewProject extends Component {

     _onChangeText(newText) {
        console.log('inputed text:' + newText);
    }

    componentWillMount() {
    console.log("constantData  taype is ="+typeof(constantData));
    console.log("employees  taype is ="+typeof(constantData.employees));
    console.log("employees  length = "+constantData.employees.length);
    console.log("No.1 givenName ="+constantData.employees[0].giveName);
    console.log("No.1 FamilyName ="+constantData.employees[0].giveName);
    console.log("No.1 Salary"+constantData.employees[0].salary);
    console.log("type of No.1 Salary"+typeof(constantData.employees[0].salary));
    }

  render() {
    return (
      <View style={styles.container}>
        <Text
          onChangeText={(newText)=>{this._onChangeText(newText)}}
        />
      </View>
    );
  }


}



const styles = StyleSheet.create({
  container: {
    flex:1,justifyContent: 'center',alignItems: 'center',backgroundColor:'#F5FCFF'
  }
});
AppRegistry.registerComponent('ViewProject',() => ViewProject);

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读