我有props
,当它console.log
时,它会正确地返回true
或false
。
只要我使用props
对同一props ? true: false
进行测试,即使值为true
,它也始终返回false
。
我不知道在哪里看,有什么想法或建议吗?
render(){ return ( div {console.log(this.props.model.isActive} // return true or false correctly (boolean) {console.log(this.props.model.isActive ? 'trued' : 'falsed')} // return always trued even if false /div> ); }
编辑:
我的道具返回string
,而不是boolean
.....:@