用户登录
用户注册

分享至

移除AngularJS下URL中的#字符的方法

  • 作者: 让你无言以对
  • 来源: 51数据库
  • 2021-07-08

angularjs 默认将会使用一个 # 号来对url进行路由.

例如:

    http://example.com/

    http://example.com/#/about

    http://example.com/#/contact

要获得干净的url并将井号从url中移除是很容易的.

完成两件事情就行了.

  1.     配置 $locationprovider
  2.     设置我们的相对连接的起点路径

$location 服务

在angular中, $location服务会解析地址栏中的url,并对你的应用程序作出改变,反之亦然.

我强烈推荐通读官方的 angular $location 文档 以对$location 服务及其所提供的特性有一个了解.

$locationprovider 和 html5 模式(html5mode)

我们会使用 $locationprovider 模块,并将html5mode设置为true.

我们会在你定义angular应用程序并配置你的路由时做这些.
 

angular.module('scotchy', [])
  
 .config(function($routeprovider, $locationprovider) {
 
  $routeprovider
   .when('/', {
    templateurl : 'partials/home.html',
    controller : maincontroller
   })
   .when('/about', {
    templateurl : 'partials/about.html',
    controller : maincontroller
   })
   .when('/contact', {
    templateurl : 'partials/contact.html',
    controller : maincontroller
   });
  
  // use the html5 history api
  $locationprovider.html5mode(true);
 });

什么是 html5 history api? 它是使用一个脚本来操作浏览器历史的标准方法. 有了它就能在不刷新页面的前提下让 angular 改变路由和页面的url. 更多的信息,这里有一篇蛮好的 html5 history api 文章.

为相对链接设置<base>

为了在应用程序各处使用相对链接,你将需要在你文档的<head>里面设置一个<set>.
 

<!doctype html>
<html>
<head>
 <meta charset="utf-8">
 
 <base >
</head>

有大量的方法可以用来配置这个东西,而将html5mode设置为true就会自动的解析相对链接了. 在我这儿这种方式总是能起效. 如果你应用程序的根同url相比有所不同,例如 /my-base, 那就用那个作为你的起点路径.

老浏览器的回调

$location服务对不支持html5浏览历史api的浏览器将自动回调hashbang方法。

一切的发生对你是透明的,你不需为此做任何配置。从angular $location文档中,你可以看到回调的方法已经它是如何工作的。


总结

这是一个在angular应用中获得漂亮url并删除哈希标记的简单方法。享受超洁净、超快速的angular应用吧!

软件
前端设计
程序设计
Java相关