AngularJs过滤具有属性文件扩展名的数组对象

时间:2017-06-05 04:01:56

标签: javascript angularjs arrays angularjs-ng-repeat angularjs-filter

我有以下附件对象数组,其属性为

{
  "attachment": {
    "size":789917,
    "thumb":false,
    "dateUploaded":1495467121848,
    "name":"Alonso+2007.obj",
    "id":2828
  },
  "id":2828
}

需要过滤具有扩展名" .obj"的文件的列表。 EX:名称为" filename.obj"的文件应该只返回。尝试了以下代码

    <div ng-repeat="attachment in contribution.attachments | filter:{name:'Alonso+2007.obj'}">

但没有得到任何结果。不确定如何使用扩展名提取属性。尝试使用split()和indexof(),但没有得到结果。

0 个答案:

没有答案