带链接的纸质标签显示问题

时间:2016-03-15 22:16:20

标签: polymer polymer-starter-kit page.js

我正在使用page.js编写聚合物单页网站,就像在聚合物启动器套件中一样。我没有使用纸质菜单进行路由,而是使用纸质标签。

因此路由工作正常,但我无法让纸质标签看起来像纸质标签。它们看起来像链接,我无法看到底部的选择栏。

知道我做错了吗?

的index.html

[[UIView appearance] setSemanticContentAttribute:UISemanticContentAttributeForceLeftToRight] ;

1 个答案:

答案 0 :(得分:1)

我想我理解你的问题。单击选项卡时,它们不会保存单击和选定选项卡的状态。

这个答案将部分澄清问题Change URL in address bar after click on DOM element with javascript/jquery

在Polymer中我有同样的问题,但有菜单项。我想你可以用这种方式解决它:

1)。使用app-router代替page.js并将pushstate模式添加到mode='pushstate'

2)。在包含app-router <link rel="import" href="../bower_components/pushstate-anchor/pushstate-anchor.html">之前,在页面中包含pushstate-anchor。这将保存所有链接,并且不会重新加载页面。