7

我正在使用AngularJS編寫一個Web應用程序。用戶最多可向服務器提交3個關鍵字。我只想在關鍵字之間顯示逗號。Angular ng-show如果字符串不爲空不起作用

例如:

如果沒有關鍵字,則:

如果有1個關鍵字,則:關鍵字

,如果有2個關鍵字,則:關鍵字,關鍵字

如果有3個關鍵字,那麼:關鍵字,關鍵字,關鍵字

我有以下代碼:

<tr> 
     <td>Keywords: </td> 
     <td>{{post.Keyword1}} <span ng-show = "{{post.Keyword2}}">,</span> {{post.Keyword2}} <span ng-show = "{{post.Keyword3}}">,</span> {{post.Keyword3}}</td> 
    </tr> 

爲什麼這不起作用?

回答

13

將其更改爲

<td>{{post.Keyword1}} <span ng-show = "post.Keyword2">,</span> {{post.Keyword2}} <span ng-show = "post.Keyword3">,</span> {{post.Keyword3}}</td> 
+0

PERFECTO!這太棒了 – OneMoreQuestion