在AngularUS中的$ http URL中启用hashbang

时间:2017-05-10 13:42:46

标签: angularjs

我正在尝试以AngularJS的形式访问网址

$http.get("http://localhost:8080/#/notebook/2CG2BVYJ1")      
          .then(function(response){ vm.getgraph = response.data; });

为此,发送的get请求仅为http://localhost:8080/。我认为$ http.get忽略了URL中“#”之后的任何内容。如何让它访问完整的URL?

1 个答案:

答案 0 :(得分:0)

如果这是来自同一个应用程序,我建议您可以使用更直接的方式使用get

$http({
method: 'GET',
url: '/notebook/2CG2BVYJ1'
}).then(function(response){ vm.getgraph = response.data; });
  

我希望这个帮助