AngularJs - $ filter(' filter')服务无法正常运行

时间:2014-07-31 08:20:37

标签: angularjs angular-filters

我对Angularjs中的$filter服务有问题,例如我有一个对象,我想在这个对象内搜索:{date: "2014-06-01",LandingPage: "/alimentation-bio-c585"},但问题是,如果我这样做LandingPage: "/a"它与我匹配,我想让它搜索不是Like %的确切值。

我的对象:

var tab = [{"id": 1,"date": "2014-06-01","LandingPage": "/","Sales": 78},{"id": 1,"date":"2014-06-02","LandingPage": "/alimentation-bio-c585","Sales": 97}];

我的过滤器:

var myRedObjects = $filter('filter')(tab, {date: "2014-06-02",LandingPage: "a"})

它找到了对象,我不希望它找到exept,如果它:"LandingPage": "/alimentation-bio-c585"

我看到了文档,我为严格模式的比较器参数添加了true,但它没有用,所以请帮助我。

1 个答案:

答案 0 :(得分:0)

请参阅此处http://jsbin.com/vayuz/1/edit?html,js,output

添加' true'作为进行严格比较的第三个参数

$scope.strictmyRedObjects = $filter('filter')
(tab, {date: "2014-06-02",LandingPage: "a"}, true);