angular 域名

https://www.baidu.com/s?tn=80035161_2_dg&wd=baidu
1,协议:https//http
一个是有加密一个没有加密。前一个安全协议
2,域名:主机地址 l 例如127.0.0.1
3.端口号:一般省略了就:端口号相当于门牌号
目的找到对应的服务器
4.?表示传参:?前边省略了index这个文件,默认情况下会传入到这里

5,tn=80035161_2_dg&wd=baidu
文件传入的参数

怎么拿到协议
$location作用获取完整地址的某一部分。
http://协议
localhost:主机地址。www.baidu.com 139.129.256.5
:8080 端口号
/code/06-$location服务.html 文件路径

锚点

? name=xmg&&age=10 传递的参数

可以查看原生的网络地址
for(var key in location){
console.log(key + '=>'+location[key];
}
var app = angular.module('app',[]);
app.controller('xmgController',['$scope','$location',function($scope,$location){
///
$scope.absUrl = $location.absUrl();
///获取锚点后面的地址
$scope.url = $location.url();
///获取端口号
$scope.port =$location.port();
///主机地址
$scope.host =$location.host();
///获取的锚点,从第二个锚点开始的值
$scope.hash = $location.hash();
///参数
$scope.search = $location.search();

}])

你可能感兴趣的:(angular 域名)