React-Native:propTypes和createClass已弃用

时间:2017-06-28 07:24:07

标签: javascript android react-native deprecated

我从React Native开始。我按照建议遵循了说明:

react-native init myProject。因此,为了测试正在运行的应用程序,我使用远程JS调试来检查一切是否正常。

然后我看到不推荐使用propTypes和createClass。

我不知道如何将其迁移到新版本。 (说明适用于React,而不是React Native,我没有使用createClass,但扩展了Component,例如)

enter image description here

以下是我的依赖项:     "反应":" 16.0.0-alpha.12",     " react-native":" 0.45.1",

这是我的代码:

'use strict';

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

export default class myProject extends Component {

  render() {
    return (
      <View >
        <Text >
          Welcome to React Native!
        </Text>
        <Text >
          To get started, edit index.android.js
        </Text>
        <Text >
          Double tap R on your keyboard to reload,{'\n'}
          Shake or press menu button for dev menu
        </Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
});

AppRegistry.registerComponent('myProject', () => myProject);

1 个答案:

答案 0 :(得分:1)

对于道具类型,您现在应该使用道具类型包:
https://github.com/facebook/prop-types

对于createClass,您现在应该使用create-react-class包: https://www.npmjs.com/package/create-react-class

详细了解here