$ location.path和$ window.location.href之间的区别

时间:2017-04-03 08:34:32

标签: javascript html angularjs html5

我有一个AngularJS应用程序,我强迫在事件发生后将网页重新加载到另一个位置。我遇到过两种方法:

return function(path) {
                $location.path(path);
                $window.location.reload(true);
            };

return function(path) {
                $window.location.href = path;
                $window.location.reload(true);
            };

这两种方法有什么区别?一个人的重装是否比另一个更难?

0 个答案:

没有答案