如何正确使用AngularStrap的ScrollSpy界面链接到当前文档中的锚点?
查看AngularStrap documentation我看到当访问链接时,实际上会生成双哈希。例如:http://mgcrea.github.io/angular-strap/##scrollspy
但是,在自己实现功能时,我没有看到这种行为。在我的情况下,锚标签正在尝试更新位置,而不是移动到当前文档中的位置。
我的AngularStrap ScrollSpy位于子页面上:my-site.com/#/hig
。具有以下定义:
<div class="hig-sidebar hidden-print hidden-sm hidden-xs" role="complementary" data-offset-top="-34" bs-affix bs-scrollspy-list>
<ul class="nav hig-sidenav">
<li bs-scrollspy data-target="#overview">
<a href="#overview">Overview</a>
<ul class="nav">
<li bs-scrollspy data-target="#suboverview"><a href="#suboverview">Subsection</a></li>
</ul>
</li>
<li bs-scrollspy data-target="#accessibility"><a href="#accessibility">Accessibility</a></li>
<li bs-scrollspy data-target="#typography"><a href="#typography">Color and Typography</a></li>
<li bs-scrollspy data-target="#graphics"><a href="#graphics">Icons and Graphics</a></li>
<li bs-scrollspy data-target="#navigation"><a href="#navigation">Navigation Design</a></li>
<li bs-scrollspy data-target="#elements"><a href="#elements">UI Elements</a></li>
<li bs-scrollspy data-target="#reference"><a href="#reference">Reference</a></li>
</ul>
<a href ng-click="gotoTop()">Back to top</a>
</div>
当我滚动文档时,ScrollSpy会正确显示当前部分。但是当我点击链接时,例如“颜色和排版”链接,它会将URL更新为:my-site.com/#typography
。
我一直在查看AngularStrap代码,看不到我没做过的事情。如何确保锚链接添加到#/hig
而不是替换它?
答案 0 :(得分:2)
是的,正如我在此解释的那样: https://github.com/mgcrea/angular-strap/issues/573
在Angularjs中,当您使用$ routeProvider配置路由时,<a href="#overview">Overview</a>
之类的锚链接不起作用。
您可以通过用控制器替换锚链接来修复此问题,如下所示:
控制器:
$scope.scrolltoHref = function (id){
// set the location.hash to the id of
// the element you wish to scroll to.
$location.hash(id);
// call $anchorScroll()
$anchorScroll();
};
HTML:
<a href="" ng-click="scrolltoHref('overview')">Overview</a>
答案 1 :(得分:0)
鉴于你谈论的方式&#34;更新位置&#34;,我认为你可能在ngView
指令中使用滚动间谍。在这种情况下,请查看本期开头所述的解决方法:
https://github.com/mgcrea/angular-strap/issues/573
这有助于我找到一种有效的解决方案,并有轻微的补偿问题