再使用if標籤的時候經常會用到spa
<if test=" name!=null && name =='1' "><if/> .net
這樣子寫會出現 後面的 name =='1' 失效問題。 這個不少人會踩的坑。blog
網上有解決辦法就是 博客
<if test=‘ name!=null && name =="1" '><if/> 把這個轉換成 單引號。這樣就解決了。test
不過我以爲這樣解決太麻煩能夠這樣解決新手
<if test=" name!=null && name =='1'.toString() "><if/> 分享
這樣就能夠完美解決了。。標籤
這個坑新手掉進去會坑很久,我在這裏分享出來但願其餘人不要再踩坑了!co
若想深刻研究請看博客:
http://blog.csdn.net/shenzhenNBA/article/details/46673327