angularjs – Angular,使用select输入过滤器来更新路由?

前端之家收集整理的这篇文章主要介绍了angularjs – Angular,使用select输入过滤器来更新路由?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经设置了我的应用程序,其中可以使用选择输入按颜色过滤产品列表,如果URL中存在,我还有$routeprovider将此颜色参数传递给页面.

我现在要做的是更改选择框时更新URL /路由.如何将选择的更改绑定到路由?

select有一个 undocumented ng-change参数,可用于调用函数来设置 $location.path
<select ... ng-model="color" ng-change="updatePath()">

控制器:

function MyCtrl($scope,$location) {
    $scope.updatePath = function() {
       $location.path(... use $scope.color here ...);
    }
}
原文链接:https://www.f2er.com/angularjs/141656.html

猜你在找的Angularjs相关文章