如何在标题中添加按钮以在离子视图离子中打开popover?

时间:2016-04-16 20:59:33

标签: ionic-framework popover

我必须在离子视图页面中创建弹出窗口。我试试这个HTML代码:

<ion-view view-title="Search">
 <div class="buttons">
  <button class="button button-icon ion-more" ng-click="popover.show($event)">
  </button>
  </div>
<ion-content >
</ion-content >
</ion-view>

但我没有在标题页中找到按钮。  任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:3)

除非ion-headerion-nav-buttonsion-content中包含该按钮,否则该按钮不会显示。您可以使用以下内容将标题添加到标题:

<ion-nav-buttons side="right">
  <button class="button button-icon ion-more" ng-click="popover.show($event)">
  </button>
</ion-nav-buttons>

同时确保范围内有popover