我正在尝试$location.path
从 AngularJS 指令中进行更新。它没有按我的预期工作,即更新浏览器窗口中显示的 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
已设置为处理/comments
但在这里我试图将查询字符串附加到路由。如果我使用常规的<a href="#/comments?post={{post.postId}}">
,那可以正常工作,但是以某种方式设置相同的路由 via$location.path
是行不通的。这与此代码是否在控制器或指令中无关。