猿问

react.js中steps组件的这段代码是什么意思呢?

react.js中steps组件的这段代码是什么意思呢?

<Steps progressDot current={state ? state[0] ? state[0] : null : null}
          status={this.checkStatus(state ? state[1] ? state[1] : null : null)}>
       ......   
</Steps>


皈依舞
浏览 925回答 2
2回答

LEATH

大概是这个意思吧state&nbsp;&&&nbsp;state[0]&nbsp;?&nbsp;state[0]&nbsp;:&nbsp;null

白板的微信

相当于:state ? (state[0] ? state[0] : null) : nullMDN有很好的解释。重要一点是虽然条件运算符是右结合的,但是它的求值顺序却是从左向右的
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答