当我的应用程序第一次加载时,我想获取url路径的最后一部分。我使用这个令牌来执行请求,我目前没有使用部分,因为它对我的需求有点过分。我目前正在尝试使用$location.path()
方法在控制器上提取路径,但它返回一个空字符串。
这是我的简单记录功能
$scope.obtainTitle = function(){
var path = $location.path();
console.log($location);
console.log($location.path());
console.log($location.url());
console.log($location.hash());
$scope.title = decodeURIComponent(path);
};
这是输出,我从c9服务我的网站,这就是我阻止主机的原因。