我是Onsen UI的新手。我应该如何使用'go-back'方法返回主页面? (就像左后卫按钮一样。)我试图用pushPage-Method做到这一点。它有效,但动画不同。
带有后退/保存按钮的模板的HTML
<ons-navigator var="profileNavigator">
<ons-list ng-repeat="item in profileData">
<ons-list-item modifier="chevron" class="profile-list-item-container" ng-click="openAboutMeDesc(item.aboutMe)">
<div class="profile-list-item-left">
<i class="fa fa-child fa-profile-list"></i>
</div>
<div class="profile-list-item-right">
<div class="profile-list-item-content">
<div class="profile-category">Über mich
</div>
<span class="profile-desc">{{item.aboutMe}}</span>
</div>
</div>
</ons-list-item>
<ons-template id="profile-aboutme-desc.html">
<ons-page>
<ons-toolbar>
<div class="left">
<ons-back-button>Back</ons-back-button>
</div>
<div class="right">
<ons-toolbar-button ng-click="saveAboutMeDesc(item.naboutMe)">Save</ons-toolbar-button></div>
<div class="center">About</div>
</ons-toolbar>
<ons-row>
<!--my content-->
</ons-row>
</ons-page>
</ons-template>
</ons-navigator>
的JavaScript
$scope.openAboutMeDesc = function (aboutMe) {
profileNavigator.pushPage('profile-aboutme-desc.html', { animation : 'slide' } );
};
$scope.saveAboutMeDesc = function (naboutMe) {
};
答案 0 :(得分:2)
动画是不同的(向前而不是向后),因为使用profileNavigator.pushPage
方法,您将向堆栈添加新页面而不是返回旧页面。如果您需要转到主页,请考虑使用profileNavigator.resetToPage
方法。
$scope.openAboutMeDesc = function (aboutMe) {
profileNavigator.resetToPage('profile-aboutme-desc.html', { animation : 'slide' } );
};
请记住,您可以选择“幻灯片”,“simpleslide”,“lift”,“fade”和“none”之间的交易动画。
如果有不清楚的地方,请查看官方文档:
https://onsen.io/reference/ons-navigator.html
希望它有所帮助!