想知道怎麼拓展<if>標籤的, 請看我另外一篇文章
http://my.oschina.net/wolfx/blog/707181html
說到條件判斷,很容易想到的就是if,有不少模版引擎都是這樣處理的.react
<div className={if(isComplete){"isComplete"}}>...</div>
可是,上面的代碼在react中是錯誤的函數
解決辦法有一下4種 1.使用三目運算符 2.設置變量,在屬性中引用它 3.用函數處理 4.使用&&運算this
... render:function(){ return <div className={ this.state.isComplete ? "isComplete" : "" }>...</div> } ...
... getIsComplete:function(){ return this.state.isComplete ? "isComplete" : ""; }, render:function(){ var isComplete = this.getIsComplete(); return <div className={isComplete}>...</div> } ...
只須要改變一下上面的方法.net
getIsComplete:function(){ return this.state.isComplete ? "isComplete" : ""; }, render:function(){ return <div className={this.getIsComplete()}>...</div> }
若是isComplete爲true,&&後面的就會被使用code
... render:function(){ return <div className={this.state.isComplete && "isComplete"}>...</div> } ...