无法使用AngularJS 1在routeProvider中使用查询参数进行路由

时间:2018-06-09 18:43:09

标签: javascript angularjs

我正在开发一个以AngularJS 1作为我的前端fw的项目,除非我没有使用routeProvider使其成为SPA,否则一切正常。但现在我无法前往我专门创建的路线。

要为问题添加更多内容,我将此URL作为实例

http://www.myblog.com/d?llh=12343434

如果您注意到网址的最后一部分,那么" llh"变量,它是一个安全措施,用于检查URL的会话活动。(但这纯粹是后端,它工作正常)

.config(['$routeProvider','$httpProvider','$locationProvider','base_url',function($routeProvider, $httpProvider, $locationProvider,base_url){
            $routeProvider
            .when("/d/:llh", {
                template: "<h4>Hello World</h4>",
                controller: "manageDistributions"
            })
            $locationProvider.html5Mode(true);
        }])

1 个答案:

答案 0 :(得分:0)

它将路线定义为

enter image description here

而不是 enter image description here