从网址我想得到号码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
如何解决这个问题,我不需要更改网址。