Angular ng-show if string not empty 不起作用
Angular ng-show if string not empty does not work
我正在使用 AngularJS 编写网络应用程序。用户最多向服务器提交 3 个关键字。只有在关键字足够多的情况下,我才想在关键字之间显示逗号。
例如:
如果没有关键字,则:
如果有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>
为什么这不起作用?
改为
<td>{{post.Keyword1}} <span ng-show = "post.Keyword2">,</span> {{post.Keyword2}} <span ng-show = "post.Keyword3">,</span> {{post.Keyword3}}</td>
我正在使用 AngularJS 编写网络应用程序。用户最多向服务器提交 3 个关键字。只有在关键字足够多的情况下,我才想在关键字之间显示逗号。
例如:
如果没有关键字,则:
如果有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>
为什么这不起作用?
改为
<td>{{post.Keyword1}} <span ng-show = "post.Keyword2">,</span> {{post.Keyword2}} <span ng-show = "post.Keyword3">,</span> {{post.Keyword3}}</td>