angularjs – $location.path在Angular指令中不起作用

前端之家收集整理的这篇文章主要介绍了angularjs – $location.path在Angular指令中不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从AngularJS指令中更新$location.path.它没有按照我的预期工作,即更新浏览器窗口中显示的URL并在我的页面显示不同的内容.我的函数肯定会被调用正确的值,如控制台中所示.我认为$location.path可能会产生一些影响,因为当我点击链接时,会调用一些在新页面调用的附加函数,只会显示页面.当我在控制器中使用$location.path时,它按预期工作,但不在我的指令中.

这是我的指令的HTML

<div detail-link="/comments?post={{post.postId}}" ng-click="clickDetailLink()"></div>

这是指令的定义(在CoffeeScript中):

directives.directive 'detailLink',['$location',($location) ->
    return (scope,element,attrs) ->
        scope.clickDetailLink = ->
            console.log "loading " + scope.detailLinkHref
            $location.path scope.detailLinkHref

        attrs.$observe 'detailLink',(value) ->
            console.log "set detail link to " + value
            scope.detailLinkHref = value
]

我知道这里发生了什么……我的$routeProvider设置为处理/注释但在这里我试图将一个查询字符串附加到路由.如果我使用常规< a href =“#/ comments?post = {{post.postId}}”>,这样可以正常工作,但不知何故通过$location.path设置相同的路由是行不通的.这与代码是否在控制器或指令中无关.

尝试范围.$apply? (注意$)
原文链接:https://www.f2er.com/angularjs/141107.html

猜你在找的Angularjs相关文章