聚合物破坏了内部页面的href

时间:2016-03-29 04:43:10

标签: javascript html html5 routing polymer

所以,我使用聚合物入门套件,但感觉不对。

我创建了一个新的&#39;页面,但是当我通过菜单访问时,网址没有变化。然后,在此页面中,有一个<paper-button>与同一文件夹中的另一个html文件的链接<a>,但是当它点击它时它不起作用&#34; Cant找到:https:www.mywholelink.com/。重定向到您的主页&#34;

在index.html上,我已在菜单

中添加了该项目
<a data-route="mobile" href="{{baseUrl}}mobile">
        <iron-icon icon="settings-cell"></iron-icon>
        <span>Register your smartphone</span>
</a>

然后,在同一个文件中,我有&#39;页面&#39;

 <section data-route="mobile" tabindex="-1">
    <paper-material elevation="1">

            <a href="{{baseUrl}}device.html" tabindex="-1">
                <paper-button raised><iron-icon icon="favorite"></iron-icon>Add your phone</paper-button>
            </a>
            <p>Wanna contribute?</p>
            <p>By adding your phone you are becoming a sensor to this experiment</p>
            <p>Also, you can see the phone sensor data in real time through your browser</p>
            <p><b>All data is collected anonymously</b></p>

    </paper-material>
 </section>

我确保将代码添加到elements / routing.html

 page('/mobile', function() {
  app.route = 'mobile';
  setFocus(app.route);
});

我已经花了好几个小时而且我不知道我错过了什么,请帮忙

0 个答案:

没有答案