反应navtive this.props所有值以编程方式

时间:2018-05-25 07:34:59

标签: react-native

我的问题很简单。

我想知道

的所有键

this.props

这是我的React Component的原生道具

export default class TapBar extends React.Component{
   constructor()
  {
    super();
    this.props.what?
  }
}

有时this.props的关键是' a'或者' b'或者'导航'

有时不依赖于使用情况。

如何打印所有控制台?

1 个答案:

答案 0 :(得分:1)

在这里你可以根据你的代码控制链接

export default class TapBar extends React.Component{
       constructor(props)
      {
        super(props);
        console.log(props) // find what you want
      }
    }