我的印象是 Angular 会重写出现在模板中锚标记的 href 属性中的 URL,这样它们就可以在 html5 模式或 hashbang 模式下工作。位置服务的文档似乎说 HTML 链接重写处理了 hashbang 的情况。因此,我希望当不在 HTML5 模式下时,会插入散列,而在 HTML5 模式下,它们不会。
但是,似乎没有进行重写。以下示例不允许我仅更改模式。应用程序中的所有链接都需要手动重写(或在运行时从变量派生。我是否需要根据模式手动重写所有 URL?
我在 Angular 1.0.6、1.1.4 或 1.1.3 中没有看到任何客户端 url 重写。似乎所有href 值都需要在hashbang 模式和/ html5 模式前面加上#/。
是否需要一些配置来导致重写?我误读了文档吗?做别的傻事?
这是一个小例子:
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.1.3/angular.js"></script>
</head>
<body>
<div ng-view></div>
<script>
angular.module('sample', [])
.config(
['$routeProvider', '$locationProvider',
function ($routeProvider, $locationProvider) {
//commenting out this line (switching to hashbang mode) breaks the app
//-- unless # is added to the templates
$locationProvider.html5Mode(true);
$routeProvider.when('/', {
template: 'this is home. go to <a href="/about"/>about</a>'
});
$routeProvider.when('/about', {
template: 'this is about. go to <a href="/"/>home</a'
});
}
])
.run();
</script>
</body>
附录:在重新阅读我的问题时,我发现我使用了“重写”这个词,但并没有清楚地说明我想在何时何地进行重写。问题是如何让Angular在呈现路径时重写 URL,以及如何让 Angular 在两种模式下统一解释 JS 代码中的路径。它不是关于如何使 Web 服务器对请求进行与 HTML5 兼容的重写。