angularjs – 如何在角路由中传递querystring?

前端之家收集整理的这篇文章主要介绍了angularjs – 如何在角路由中传递querystring?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用AngularJS路由,我试图看看如何使用查询字符串(例如,url.com?key=value)。 Angular不理解包含相同名称相册的键值对的路由:
angular.module('myApp',['myApp.directives','myApp.services']).config(
        ['$routeProvider',function($routeProvider) {
            $routeProvider.
            when('/albums',{templateUrl: 'albums.html',controller: albumsCtrl}).
            when('/albums?:album_id',{templateUrl: 'album_images.html',controller: albumsCtrl}).
            otherwise({redirectTo: '/home'});
        }],['$locationProvider',function($locationProvider) {
            $locationProvider.html5Mode = true;
        }]
    );
我不认为路由与查询字符串。而不是url.com?key=value,你可以使用更像REST的URL,如url.com/key/value?然后您将定义您的路由,如下所示:
.when('/albums',...)
.when('/albums/id/:album_id',...)

或者可能

.when('/albums',...)
.when('/albums/:album_id',...)
原文链接:https://www.f2er.com/angularjs/145757.html

猜你在找的Angularjs相关文章