メインページに入る前にログインページを設定したいです。この指示の直前にそれを行うにはどうすればよいですか:
<ons-screen page="sliding_menu.html"></ons-screen>
Monaca IDE を使用しています
助けてくれてありがとう
チャールズ
メインページに入る前にログインページを設定したいです。この指示の直前にそれを行うにはどうすればよいですか:
<ons-screen page="sliding_menu.html"></ons-screen>
Monaca IDE を使用しています
助けてくれてありがとう
チャールズ
この方法を試すことができます:
index.html
<ons-screen page="login.html"
login.js
function LoginController($scope){
$scope.login = function(id, password){
$scope.ons.screen.presentPage('sliding_menu.html');
}
}
login.html
<div class="page center" ng-controller="LoginController">
<div class="row">
<div class="col">
<ons-text-input placeholder="id" ng-model="id">
</ons-text-input>
</div>
</div>
<div class="row">
<div class="col">
<input type="password" placeholder="password" ng-model="password" class="topcoat-text-input">
</div>
</div>
<div class="row">
<div class="col">
<ons-button ng-click="login(id, password)">
Login
</ons-button>
</div>
</div>
</div>
デモ: http://onsenui.github.io/stackoverflow/sliding_menu_login/app/
ソースをダウンロード: http://onsenui.github.io/stackoverflow/sliding_menu_login.zip