3

我想将 url 显示为 "www.test.com/!#" 因为我正在使用 $locationProvider.hashPrefix("!") ;但它将网址显示为“www.test.com/#!” . 我想要 ”!” 在哈希之前而不是在哈希之后。

谢谢

var app = angular.module('app', []);
app.config(function ($routeProvider, $locationProvider) {
    $locationProvider.html5Mode(false);
    $locationProvider.hashPrefix("!");
    $routeProvider.when('/', {
        templateUrl: "app.html",
        controller: "AppCtrl"
    }

    )
        .when('/Program', {
        templateUrl: "detail1.html",
        controller: "Redirect"
    })
        .when('/Program/123456/channel/78458585',

    {
        templateUrl: "details.html",
        controller: "Detail"
    });
});



app.controller("AppCtrl", function ($scope) {

});

app.controller("Detail", function ($scope, $location) {

});

app.controller("Redirect", function ($scope, $location) {
    $location.path("/Program/123456/channel/78458585")
});
4

1 回答 1

7

如果你想!在片段标识符开始之前在 URL 中添加一个,那么你需要将它放在 URL 中以开始,而不是尝试使用 Angular 来做。

http://www.example.com/#foo并且http://www.example.com/#!foo是同一页面的不同部分。

但是http://www.example.com/#foohttp://www.example.com/!#foo完全不同的页面。

于 2013-09-15T09:55:27.907 回答