我如何在 angular JS 中获取基本主机

How can i get the base host in angular JS

我在 url

中有这个

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

$location.host 给我 192.168.0.10

我只想得到

https://192.168.0.10

我怎样才能得到它

你可以做一件事:-

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

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