带有fancybox的AngularJS html5mode

时间:2014-07-22 11:58:34

标签: angularjs fancybox-2

我正在使用带有angularjs的fancybox。 Fancybox在没有html5mode的情况下工作正常,但如果我在显示fancybox时启用html5mode页面重定向到root。

1 个答案:

答案 0 :(得分:2)

我通过阻止路由来解决问题。

$scope.$on('$locationChangeStart', 
    function (event, next, current) {
        if (next.indexOf('/images/') > 0) {
                event.preventDefault();
            }
        });