我的问题很简单。
我想知道
的所有键this.props
这是我的React Component的原生道具
export default class TapBar extends React.Component{
constructor()
{
super();
this.props.what?
}
}
有时this.props的关键是' a'或者' b'或者'导航'
有时不依赖于使用情况。
如何打印所有控制台?
答案 0 :(得分:1)
在这里你可以根据你的代码控制链接
export default class TapBar extends React.Component{
constructor(props)
{
super(props);
console.log(props) // find what you want
}
}