4

我有一个具有两个属性的对象。一个命名为 min-acceptable-price,另一个命名为 max-acceptable price。在我的索引页面中,我使用滑块使用这两个值进行过滤,例如 $scope.maxPrice 使用对象的 max-acceptable-price 进行过滤,而 $scope.minPrice 使用 min-acceptable-price过滤。

这就是说,如果我们选择 10 美元的最小可接受价格和 20 美元的最大可接受价格,那么搜索功能应该检查所有最小可接受价格以查看它们是否大于 10 美元并且所有最大可接受的价格,看看它们低于 20 美元。

使用 AngularJS 滑块可以做到这一点吗?(http://prajwalkman.github.io/angular-slider/

谢谢你的帮助!

4

2 回答 2

4

I have the same requirement, so I modified angular-slider by adding custom-ceiling and custom-floor.

By specifying these 2 extra attributes, the slider will start and end based on bindable values and not on the specified floor and ceiling.

Plunker here: http://plnkr.co/edit/hNg2gOTHa7ig2hPsrmZ8?p=preview

于 2013-10-08T12:34:19.243 回答
4

:)

如何使用滑块更新范围上的价格上限和下限,然后过滤这些界限:http ://plnkr.co/edit/uF31rMbNLzF382GUZYqr?p=preview

于 2013-08-19T12:42:05.233 回答