我遇到了一些问题ng-show
和$pristine
。
这是代码(也在 CodePen 上):
<blockquote ng-show="!comment.author.$pristine && !comment.rating.$pristine && !comment.comment.$pristine">
<p>{{comment.rating}} Stars</p>
<p>{{comment.comment}}</p>
<footer>{{comment.author}}
</blockqoute>
当表单上的每个字段都已填满时,我想显示包含我的重复项的 div,但我希望在有些字段仍然为空时隐藏它。
我试着用
!comment.[index].$pristine && ....
所以当每个字段都被填满时,块引用会变得可见,但它不起作用。