以下代码段仅在我离开当前位置后才能生效。我在开始时需要previousLocation。我怎样才能做到这一点?
$scope.$on('$locationChangeStart', function(e, currentLocation, previousLocation){
console.log('locationChange');
//alert(previousLocation);
});
答案 0 :(得分:1)
您可以使用document.referrer
并使用以下内容检查网址是否与您的应用匹配:
document.referrer.indexOf(window.location.hostname) > -1