我正在使用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?然后您将定义您的路由,如下所示:
原文链接:https://www.f2er.com/angularjs/145757.html.when('/albums',...) .when('/albums/id/:album_id',...)
或者可能
.when('/albums',...) .when('/albums/:album_id',...)