我正在尝试使用Polymer构建一个小型Flask项目。我不认为烧瓶方面正在弄乱我。当我点击'编辑物种'纸条我不去任何地方。
<body>
<core-header-panel flex>
<core-toolbar class="medium-tall">
<paper-menu-button icon="menu">
<paper-item label="Home" center horizontal layout flex></paper-item>
<paper-item label="Edit Species" center horizontal layout flex>
<a href="/speciesEdit"></a>
</paper-item>
...more...
</paper-menu-button>
...and so on...
为了让链接在纸张菜单按钮内工作,我还需要做些什么吗?
感谢您的帮助!
答案 0 :(得分:1)
我有工作代码:
<core-header-panel navigation flex mode="seamed">
<core-toolbar>Application</core-toolbar>
<core-menu>
<core-item icon="settings" label="item1"></core-item>
<core-item icon="settings" label="item2"></core-item>
<paper-item label="Edit Species" center horizontal layout flex>
<a href="/speciesEdit"></a>
</paper-item>
</core-menu>
</core-header-panel>
这个jsbin演示可能会帮助您找到问题所在。 http://jsbin.com/xuveqi
答案 1 :(得分:1)
对于Polymer 1.0,将class="flex"
添加到每个锚标记中。如果您使用的是Polymer 0.5,请使用flex
属性而不是类。