看不到 ion-nav-button
Can't see the ion-nav-button
在我的 ionic 应用程序中,我有一个功能,用户应该在应用程序的导航栏水平点线中看到,点击它们然后弹出菜单应该出现两个菜单项(添加到收藏夹和添加评论).下图说明了我的观点。
但问题是那 3 个水平点没有出现在应用程序的导航栏中。
这是 ion-nav-button 的代码。
<ion-view view-title="News Details">
<ion-content>
<ion-nav-buttons side="secondary">
<div class="buttons">
<button class="button button-icon icon ion-more"
ng-click="openPopover($event)"></button>
</div>
</ion-nav-buttons>
<div class="card">
<div class="item item-body item-text-wrap">
<img class="full-image" ng-src="{{detailedNews.image}}" alt="Uthappizza">
<h3>{{detailedNews.title}}</h3>
<p>{{detailedNews.description}}</p>
</div>
</div>
<div class="row">
<div class="col col-offset-10">
<h4>Customer Comments
<small>Sort by:
<input type="text" ng-model="orderText">
</small></h4>
<ul class="list">
<li ng-repeat="comment in dish.comments | orderBy:orderText">
<blockquote>
<p>{{comment.rating}} Stars</p>
<p>{{comment.comment}}</p>
<footer>{{comment.author}}, {{comment.date | date:'MMM. dd, yyyy'}}</footer>
</blockquote>
</li>
</ul>
</div>
</div>
</ion-content>
</ion-view>
也许这一行有问题。
<button class="button button-icon icon ion-more"ng-
click="openPopover($event)"></button>
你能帮帮我吗?
谢谢,
西奥.
尝试将 <ion-nav-buttons></ion-nav-buttons>
指令包装在 <ion-nav-bar></ion-nav-bar>
指令中并将其从 ion-content
.
中取出
<ion-view view-title="News Details">
<ion-nav-bar>
<ion-nav-buttons side="secondary">
<div class="buttons">
<button class="button button-icon icon ion-more"
ng-click="openPopover($event)"></button>
</div>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content>
...
在我的 ionic 应用程序中,我有一个功能,用户应该在应用程序的导航栏水平点线中看到,点击它们然后弹出菜单应该出现两个菜单项(添加到收藏夹和添加评论).下图说明了我的观点。
但问题是那 3 个水平点没有出现在应用程序的导航栏中。
这是 ion-nav-button 的代码。
<ion-view view-title="News Details">
<ion-content>
<ion-nav-buttons side="secondary">
<div class="buttons">
<button class="button button-icon icon ion-more"
ng-click="openPopover($event)"></button>
</div>
</ion-nav-buttons>
<div class="card">
<div class="item item-body item-text-wrap">
<img class="full-image" ng-src="{{detailedNews.image}}" alt="Uthappizza">
<h3>{{detailedNews.title}}</h3>
<p>{{detailedNews.description}}</p>
</div>
</div>
<div class="row">
<div class="col col-offset-10">
<h4>Customer Comments
<small>Sort by:
<input type="text" ng-model="orderText">
</small></h4>
<ul class="list">
<li ng-repeat="comment in dish.comments | orderBy:orderText">
<blockquote>
<p>{{comment.rating}} Stars</p>
<p>{{comment.comment}}</p>
<footer>{{comment.author}}, {{comment.date | date:'MMM. dd, yyyy'}}</footer>
</blockquote>
</li>
</ul>
</div>
</div>
</ion-content>
</ion-view>
也许这一行有问题。
<button class="button button-icon icon ion-more"ng-
click="openPopover($event)"></button>
你能帮帮我吗?
谢谢,
西奥.
尝试将 <ion-nav-buttons></ion-nav-buttons>
指令包装在 <ion-nav-bar></ion-nav-bar>
指令中并将其从 ion-content
.
<ion-view view-title="News Details">
<ion-nav-bar>
<ion-nav-buttons side="secondary">
<div class="buttons">
<button class="button button-icon icon ion-more"
ng-click="openPopover($event)"></button>
</div>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content>
...