使用带有ng-if的RegExp

时间:2018-03-21 10:34:01

标签: angularjs

我想将RegExpng-if synthax一起使用,但似乎无法正常工作。

我的代码:

<td ng-if="item.name.match(new RegExp(/.png|.jpg|.jpeg/, 'gi')).length"><img ng-src="/uploads/{{item.name}}"></td>
<td ng-if="!item.name.match(new RegExp(/.png|.jpg|.jpeg/, 'gi')).length">No image</td>

1 个答案:

答案 0 :(得分:1)

我建议阻止在视图中添加该逻辑。

您可以在validateAssets(item)上创建一个函数,例如使用控制器上的Regex评估参数的ng-if

继续摇摆!