如何使用meteoric在标题中建立链接

时间:2015-03-26 08:39:35

标签: meteor ionic-framework meteor-blaze meteoric

我需要使用Meteoric软件包链接到Meteor中的另一个页面。我试图用按钮将它添加到标题的右侧。如果我在{{#contentFor" headerButtonRight"}}中创建一个按钮 - 它会按预期对齐。但是,如果我添加标签 - 不再应用对齐。我尝试将元素放到" headerTitle"并添加类" pull-right"但结果是一样的。目前我的代码如下所示:

{{#contentFor "headerButtonRight"}}
    <a href="{{pathFor 'drafts.add'}}" class="pull-right"><button class="button button-clear pull-right">{{> ionIcon icon="ios-barcode"}} Scan</button></a>
{{/contentFor}}

如果这不是将链接按钮放在标题右侧的正确方法 - 那是什么?

提前谢谢你。

1 个答案:

答案 0 :(得分:1)

您可能不需要嵌套在链接tage内的按钮尝试...

{{#contentFor "headerButtonRight"}}
<a href="{{pathFor 'drafts.add'}}" class="button button-clear">{{> ionIcon icon="ios-barcode"}} Scan</a>
{{/contentFor}}