Add a login page in my Onsenui app
问题 I'd like to set a login page before entering the main page. How can I do that just before this instruction : <ons-screen page="sliding_menu.html"></ons-screen> I use The Monaca IDE Thanks for the help Charles 回答1: You can try this way: 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=