我在url中有这个
https://192.168.0.10/users/#!/user-profile/20
$ location.host正在给我192.168.0.10
我想只获得
https://192.168.0.10
我怎么能得到那个
答案 0 :(得分:1)
你可以做一件事: -
var protocol = $location.protocol();
var host = $location.host();
var combined = protocol + '://' + host;