如何在角度JS中获得基本主机

时间:2015-02-06 01:37:03

标签: javascript angularjs location

我在url中有这个

https://192.168.0.10/users/#!/user-profile/20

$ location.host正在给我192.168.0.10

我想只获得

https://192.168.0.10

我怎么能得到那个

1 个答案:

答案 0 :(得分:1)

你可以做一件事: -

var protocol = $location.protocol();
var host = $location.host();

var combined = protocol + '://' + host;