我必须在离子视图页面中创建弹出窗口。我试试这个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>
但我没有在标题页中找到按钮。 任何帮助表示赞赏。
答案 0 :(得分:3)
除非ion-header
,ion-nav-buttons
,ion-content
中包含该按钮,否则该按钮不会显示。您可以使用以下内容将标题添加到标题:
<ion-nav-buttons side="right">
<button class="button button-icon ion-more" ng-click="popover.show($event)">
</button>
</ion-nav-buttons>
同时确保范围内有popover