react-native – 手动调用React.PropTypes验证React native“^ 0.30.0”

我已升级到最新版本的React / RN:
“react”:“^ 15.2.1”,
“react-native”:“^ 0.30.0”,

我开始收到很多关于样式表的警告。我实际上没有使用React.PropTypes验证的样式表,那么为什么抛出这些警告?

const styles = StyleSheet.create({
    welcome: {
        fontSize: 20,textAlign: "center",margin: 10,},

ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for the fontSize prop on
StyleSheet welcome. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000
for details.reactConsoleError @

ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for the textAlign prop on
StyleSheet welcome. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000

ExceptionsManager.js:76 Warning: You are manually calling a
React.PropTypes validation function for the margin prop on
StyleSheet welcome. This is deprecated and will not work in the next
major version. You may be seeing this warning due to a third-party
PropTypes library. See 07000
for details.

反应原性0.30取决于反应15.2.0而不是15.2.1。所以你应该做rm -rf node_modules / react,从package.json中删除react版本,然后npm install –save react@15.2.0。这应该做的伎俩。

相关文章

一、前言 在组件方面react和Vue一样的,核心思想玩的就是组件...
前言: 前段时间学习完react后,刚好就接到公司一个react项目...
前言: 最近收到组长通知我们项目组后面新开的项目准备统一技...
react 中的高阶组件主要是对于 hooks 之前的类组件来说的,如...
我们上一节了解了组件的更新机制,但是只是停留在表层上,例...
我们上一节了解了 react 的虚拟 dom 的格式,如何把虚拟 dom...