码迷,mamicode.com
首页 > Web开发 > 详细

【转】AngularJs $location获取url参数

时间:2016-12-29 20:16:01      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:scope   nbsp   地址   .config   sea   location   cccccc   angular   html   

// 带#号的url,看?号的url,见下面  
url = http://qiaole.sinaapp.com?#name=cccccc  
  
$location.absUrl();  
// http://qiaole.sinaapp.com?#name=cccccc  
  
$location.host();  
// qiaole.sinaapp.com  
  
$location.port();  
// 80  
  
$location.protocol();  
// http  
  
$location.url();  
// ?#name=cccccc  
  
// 获取url参数  
$location.search().name;  
// or  
$location.search()[‘name‘];  
  
// 注:如果是这样的地址:http://qiaole.sinaapp.com?name=cccccc  
  
var searchApp = angular.module(‘searchApp‘, []);  
searchApp.config([‘$locationProvider‘, function($locationProvider) {  
  $locationProvider.html5Mode(true);  
}]);  
searchApp.controller(‘MainCtrl‘, [‘$scope‘, ‘$location‘, function($scope, $location) {  
  if ($location.search().keyword) {  
    $scope.keyword = $location.search().keyword;  
  }  
}]);  

 

【转】AngularJs $location获取url参数

标签:scope   nbsp   地址   .config   sea   location   cccccc   angular   html   

原文地址:http://www.cnblogs.com/eedc/p/6234536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!