HTML源代碼如何使用AngularJS
<div ng-app="">
<div ng-controller="test">
<div ng-address-bar browser="html5"></div>
<br><br>
$location.url() = {{$location.url()}}<br>
$location.search() = {{$location.search('keyword')}}<br>
$location.hash() = {{$location.hash()}}<br>
keyword valus is={{loc}} and ={{loc1}}
</div>
</div>
AngularJS源代碼
<script>
function test($scope, $location) {
$scope.$location = $location;
$scope.ur = $scope.$location.url('www.html.com/x.html?keyword=test#/x/u');
$scope.loc1 = $scope.$location.search().keyword ;
if($location.url().indexOf('keyword') > -1){
$scope.loc= $location.url().split('=')[1];
$scope.loc = $scope.loc.split("#")[0]
}
}
</script>
這裏變量loc
和loc1
得到URL參數都返回測試作爲結果的上方網址。這是正確的方法嗎?
您可能想查看[$ routeParams](http://docs.angularjs.org/api/ng.$routeParams)。 – 2012-11-08 22:37:40
不清楚你在這裏問什麼... $ routeParams和$ location#methods文檔應該讓你開始 – deck 2013-09-06 06:44:09
請在投票時加入一條評論,以便改善問題。謝謝。 – praveenpds 2014-08-13 12:17:33