从查询字符串AngularJS中获取价值

时间:2016-06-07 11:33:14

标签: jquery angularjs parameters query-string

从网址我想得到号码5.我的网址是index.html?ID = 5

angular.module('myApp', ['ngSanitize'])
.controller('MyController', function ($scope, $location, $http) {
  alert("Account Number  is - " + $location.search()['ID']);

加载后警报返回5但我的网址更改为index.html?ID = 5#/ index.html?ID = 5

如何解决这个问题,我不需要更改网址。

0 个答案:

没有答案