react-native 入门基础-注意细节总结

2019-01-16  本文已影响0人  Lucky_ce60

组件能够撑满剩余空间的前提是其父容器的尺寸不为零。如果父容器既没有固定的width和height,也没有设定flex,则父容器的尺寸为零。其子组件如果使用了flex,也是无法显示的。

React Native 中的 Flexbox 的工作原理和 web 上的 CSS 基本一致,当然也存在少许差异。首先是默认值不同:flexDirection的默认值是column而不是row,而flex也只能指定一个数字值。

1.flexDirection决定布局的主轴:(row,column,row-reverse,column-reverse)[默认竖轴方向:column]
2.justifyContent决定其子元素沿着主轴的排列方式:(flex-start、center、flex-end、space-around、space-between以及space-evenly)
3.alignItems决定其子元素沿着次轴(与主轴垂直的轴)的排序方式:(flex-start、center、flex-end以及stretch)

  <FlatList
          data={[ //数据源
            {key: 'Devin'},
            {key: 'Jackson'},
            {key: 'James'},
            {key: 'Joel'},
            {key: 'John'},
            {key: 'Jillian'},
            {key: 'Jimmy'},
            {key: 'Julie'},
          ]}
          renderItem={({item}) => <Text style={styles.item}>{item.key}</Text>} //解析数据,
         // 为什么这里写成了'{item}',而并不是'(item)',根据es6的解构方法,模式匹配。
        />

如果需要渲染的是一组需要分组的数据,且带有分组标签的,推荐使用SectionList组件。

 <SectionList
          sections={[
            {title: 'D', data: ['Devin']},
            {title: 'J', data: ['Jackson', 'James', 'Jillian', 'Jimmy', 'Joel', 'John', 'Julie']},
          ]}
          renderItem={({item}) => <Text style={styles.item}>{item}</Text>}
          renderSectionHeader={({section}) => <Text style={styles.sectionHeader}>{section.title}</Text>}
          keyExtractor={(item, index) => index}
        />
fetch("https://mywebsite.com/mydata.json");//还有可选的第二个参数,用来定制htttp请求一些参数,比如:

 method: "POST",
  headers: {
    Accept: "application/json",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    firstParam: "yourValue",
    secondParam: "yourOtherValue"
  })

2 .处理服务器响应的数据
网络请求是一种异步操作

async function getMoviesFromApi() {
  try {
    // 注意这里的await语句,其所在的函数必须有async关键字声明
    let response = await fetch(
      "https://facebook.github.io/react-native/movies.json"
    );
    let responseJson = await response.json();
    return responseJson.movies;
  } catch (error) {
    console.error(error); //别忘了 catch 住fetch可能抛出的异常,否则出错时你可能看不到任何提示。
  }
}

以上内容,有任何描述错误,可在评论中提出!谢谢!

上一篇 下一篇

猜你喜欢

热点阅读