gpt4 book ai didi

react-native - 警告:不推荐使用componentWillMount。但是我没有用这种方法

转载 作者:行者123 更新时间:2023-12-04 05:26:39 27 4
gpt4 key购买 nike

我正在开发一个使用导航(Stack和TabNavigator)的应用程序,但是,在将响应导航升级到版本4之后,会出现不赞成使用的“ componentWillMount”错误消息。但我在应用程序中的任何地方都没有使用此方法。会是什么

import {createStackNavigator} from 'react-navigation-stack';
import {createAppContainer} from 'react-navigation';


import Screen1 from './Screen1';


const telas = createStackNavigator({
Tela1:{
screen:Screen1
}
})

export default createAppContainer(telas);

//------------------------------------------

import {createAppContainer} from 'react-navigation';
import {createBottomTabNavigator} from 'react-navigation-tabs';


import Tab1 from './Tab1';
import Tab2 from './Tab2';


const telas = createBottomTabNavigator({
Tela1:{
screen:Tab1
},
Tela2:{
screen:Tab2
}
})

export default telas;

//----------------------- Tabs
import React from 'react';
import {View, Text} from 'react-native';

export default class Tab1 extends React.Component{
render(){
return(
<View>
<Text>Tab1</Text>
</View>
);
}
}


enter image description here

最佳答案

编辑:
您正在使用BottomTabNavigator。此实现使用包含以下方法的Animated:'componentWillMount'。看到:

enter image description here

以前,您可以在index.js中添加以下代码:

import {YellowBox} from 'react-native';
YellowBox.ignoreWarnings(['Warning: componentWillMount']);


该代码将隐藏所有以“警告:componentWillMount ...”开头的警告。

关于以下问题: https://github.com/kmagiera/react-native-reanimated/issues/353#issuecomment-526987704

关于react-native - 警告:不推荐使用componentWillMount。但是我没有用这种方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57750857/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com