ログインページでのみサイドメニューを削除する必要があります。それ以外の場合は残ります。どうすればできますか?私はコマンドionic ionic start myApp sidemenu
プロジェクトを作成します。
app.js
.config(function($stateProvider, $urlRouterProvider) {
$stateProvider
.state('login', {
url: "/login",
templateUrl: "templates/login.html",
controller: 'LoginCtrl'
})
.state('app', {
url: "/app",
abstract: true,
templateUrl: "templates/menu.html",
controller: 'AppCtrl'
})
.state('app.search', {
url: "/search",
views: {
'menuContent' :{
templateUrl: "templates/search.html"
}
}
})
ログインページ
<ion-view title="Login">
<ion-content>
<div class="list">
<label class="item">
<button class="button button-block button-positive" type="submit" ng-click="login()">Log in</button>
</label>
</div>
</ion-content>
</div>
を呼び出すことにより、任意のページでいつでもサイドメニューを無効/有効にできます
$ionicSideMenuDelegate.canDragContent(false)
例えば:
angular.module('ABC').controller('xyzCtrl', function($scope, $ionicSideMenuDelegate) {
$ionicSideMenuDelegate.canDragContent(false)
});
イオン2
import { MenuController } from 'ionic-angular';
export class LoginPage {
constructor(public menuCtrl: MenuController) {
}
ionViewWillEnter() {
this.menuCtrl.swipeEnable( false )
}
ionViewDidLeave() {
this.menuCtrl.swipeEnable( true )
}
}
ここで同じ問題。イオンビューにhide-nav-bar = "true"を追加するだけです
<ion-view hide-nav-bar="true">
それが役に立てば幸い!
できることは、サイドメニューなしでログインページを定義することです。ログインページのHTMLテンプレートを確認します。 <ion-side-menus>
要素と<ion-side-menu>
要素が含まれていないことを確認してください。これらは、サイドメニューが必要なページで使用されます。
ログインページは次のようになります。
<ion-view>
<ion-content>
<!--your page content goes in here-->
</ion-content>
</ion-view>
他のページにサイドメニューを表示するには、サイドメニューのコンテンツを、コードではapp
状態である親状態にします。
Menu.htmlファイル:
<ion-view>
<ion-side-menus>
<ion-side-menu>
<!--put your side menu content here-->
<!--any child state of app will inherit this sidemenu-->
</ion-side-menu>
<ion-side-menu-content>
<ion-nav-view name="menuContent"></ion-nav-view>
</ion-side-menu-content>
</ion-side-menus>
</ion-view>
質問の小さなデモを作成しました。
サイドメニューとは異なるページが必要な場合。新しいParent state
を作成します。例えば
$stateProvider
.state('landing', {
url: '/landing',
controller: 'landingCtrl',
templateUrl: 'landing.html'
});
Html:
<ion-view class="view-bg-blue" >
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" ng-click="openMenu()"></button>
</ion-nav-buttons>
<ion-content padding="true">
<h3 class="text-center">Welcome To Landing Page</h3>
<div class="row">
<div class="col">
<div class="text-center">
<h4>My App</h4>
<div class="row">
<div class="col">
<input placeholder="User">
</div>
</div>
<div class="row">
<div class="col">
<input placeholder="password">
</div>
</div>
<a class="button icon-right ion-chevron-right button-calm" ng-click="open()">Login</a>
</div>
</div>
</div>
</ion-content>
</ion-view>
その後、いつでも/landing
を使用してこの状態を呼び出します。
ゲームに少し遅れましたが、これは、ログインビューをside-menu
レイアウト。ただし、ビュータイトルを保持したままサイドメニューボタンを非表示にする必要があります。
login.html
ビューはion-header-bar
ディレクティブでタイトル付きの新しいヘッダーを作成し、ion-nav-bar
の中に side-menu
レイアウトion-view
鬼ごっこ。
例(login.html)
<ion-header-bar class="bar-positive" align-title="center">
<h1 class="title">Login</h1>
</ion-header-bar>
<ion-view hide-nav-bar="true">
<!-- Login content goes here -->
</ion-view>
次に、@ waqasが提案するように、コントローラでドラッグジェスチャを無効にする必要がある場合。
私はこれが遅いことを知っていますが、ここに迅速で簡単な解決策があります。
これをログインコントローラーに追加します
$scope.$on('$ionicView.afterEnter', function(event) {
$ionicSideMenuDelegate.canDragContent(false);
});
//enable side menu drag before moving to next view
$scope.$on('$ionicView.beforeLeave', function(event) {
$ionicSideMenuDelegate.canDragContent(true);
});
import {IonicApp, Page, NavController, MenuController} from 'ionic/ionic';
import {TabsPage} from '../tabs/tabs';
import {SignupPage} from '../signup/signup';
import {UserData} from '../../providers/user-data';
@Page({
templateUrl: 'build/pages/login/login.html'
})
export class LoginPage {
constructor(nav: NavController, userData: UserData, menu: MenuController) {
this.nav = nav;
this.userData = userData;
this.login = {};
this.submitted = false;
this.menu = menu;
}
onLogin(form) {
this.submitted = true;
if (form.valid) {
this.userData.login();
this.nav.Push(TabsPage);
}
}
onSignup() {
this.nav.Push(SignupPage);
}
onPageDidEnter() {
// the left menu should be disabled on the login page
this.menu.enable(false);
}
onPageDidLeave() {
// enable the left menu when leaving the login page
this.menu.enable(true);
}
}
スライドメニューを見る必要があります。開いている場合は、切り替えて閉じる必要があります。
.controller('kayTOlCtrl', function($scope,$ionicSideMenuDelegate) {
//
$scope.$watch(function () {
return $ionicSideMenuDelegate.getOpenRatio();
},
function (ratio) {
if (ratio != 0) {
$ionicSideMenuDelegate.toggleRight();
}
});
})
メインアプリコントローラーにこれを追加することもできます。
$scope.$root.enableLeft = true;
$scope.$root.showMenuIcon = true;
サイドメニューを表示したくないすべてのコントローラーでfalseに切り替えるだけです。
$scope.$root.enableLeft = false;
$scope.$root.showMenuIcon = false;
is-enabled = "$ root.enableLeft"をhtmlタグに追加し、ng-show = "$ root.showMenuIcon"をhtmlタグ内のボタンに追加します。
<ion-side-menus>
bcn
<ion-tab title="ALL" href="#/dashbord/all" class="bgorange">
<ion-nav-view name="all"></ion-nav-view>
</ion-tab>
<ion-tab title="INFO" class="bgorange" href="#/dashbord/info">
<ion-nav-view name="info"></ion-nav-view>
</ion-tab>
<ion-tab title="EVENTS" class="bgorange" href="#/dashbord/events">
<ion-nav-view name="events"></ion-nav-view>
</ion-tab>
</ion-tabs>
<ion-nav-view></ion-nav-view>
</ion-pane>
<div ng-include src="calender.html"></div>
<ion-side-menu side="left">
<ion-content has-header="true">
<ion-list>
<ion-item menu-close class="item-icon-left bottombordernone" href="#/dashbord">
<i class="icon ion-home"></i>
What's New
</ion-item>
<ion-item menu-close class="item-icon-left bottombordernone">
<i class="icon ion-chatbox-working"></i>
Feedback
</ion-item>
<ion-item menu-close class="item-icon-left bottombordernone" ng-click="logout()">
<i class="icon ion-power"></i>
Logout
</ion-item>
</ion-list>
</ion-content>
</ion-side-menu>
@Zuluは私の完全なコードです。この例あなたのために働く。
// index.html
<body>
<section ui-view></section>
</body>
// routes.js
$stateProvider
.state('login', {
url: '/login',
templateUrl: 'templates/login.html'
})
$urlRouterProvider.otherwise('/login')
それは仕事です、詳細はこちらをご覧ください: angular-ui/ui-router
皆さんからのさまざまな回答と15分間の試用に基づいて、これが私の実際の例です。コピーペーストを行うだけで機能するはずです
Login.htmlなどのビュー
<ion-view hide-nav-bar="true">
<ion-header-bar class="bar-light title-image" align-title="center">
<h1 class="title">Title</h1>
</ion-header-bar>
<ion-content>
</ion-content>
</ion-view>
LoginCtrlなどの関連コントローラー
function LoginCtrl($scope, $ionicSideMenuDelegate) {
$scope.$on('$ionicView.afterEnter', function(event) {
$ionicSideMenuDelegate.canDragContent(false);
});
//enable side menu drag before moving to next view
$scope.$on('$ionicView.beforeLeave', function(event) {
$ionicSideMenuDelegate.canDragContent(true);
});
}
.state('login', {
url: '/login',
controller: 'LoginCtrl',
templateUrl: 'templates/loginpage.html'
})
.state('app.account', {
url: '/account',
views: {
'menuContent': {
templateUrl: 'templates/account.html',
controller: 'AccountCtrl'
}
}
})
$ ionicSideMenuDelegate.canDragContent(false)を呼び出すと、スワイプしてメニューにアクセスする機能は無効になりますが、ナビゲーションバーのハンバーガートグルボタン(ある場合)は非表示になりません。これを行うには、ion-side-menu-content要素で次のようにng-showを$ rootバインディングで使用できます。
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" menu-toggle="left"
ng-show="$root.showMenuIcon">
</button>
</ion-nav-buttons>
次に、ログインコントローラーで:
$scope.$on('$ionicView.beforeEnter', function (event) {
$scope.$root.showMenuIcon = false;
$ionicSideMenuDelegate.canDragContent(false);
});
$scope.$on('$ionicView.beforeLeave', function (event) {
$scope.$root.showMenuIcon = true;
$ionicSideMenuDelegate.canDragContent(true);
});