こんにちは、私はモーダルを開こうとしています。物事は、私は$ ionicmodalと別のモーダルをバインドしようとしていますが、以前のものを開いている今私はテンプレートとpaleviously私のモーダルをバインドしているです。誰かがそれは私がモーダルがAPPCtrlイオンモーダルが前のモーダルを開く
angular.module('starter.controllers', [])
.controller('AppCtrl', function($scope, $ionicModal, $timeout) {
// With the new view caching in Ionic, Controllers are only called
// when they are recreated or on app start, instead of every page change.
// To listen for when this page is active (for example, to refresh data),
// listen for the $ionicView.enter event:
//$scope.$on('$ionicView.enter', function(e) {
//});
// Form data for the login modal
$scope.action = {
// name:'',
// date: '',
// type:''
};
$scope.placeholder="01/01/2016";
// Create the login modal that we will use later
$ionicModal.fromTemplateUrl('templates/addAction.html', {
scope: $scope
}).then(function(modal) {
$scope.modal = modal;
});
// Triggered in the login modal to close it
$scope.closeActionModal = function() {
console.log('hello');
$scope.modal.hide();
};
// Open the login modal
$scope.openAddActionModel = function() {
$scope.modal.show();
$('#action_datePicker').val(new Date());
};
// $scope.abc = function(){
// console.log('asdavshahs');
// alert('Hello');
// }
// Perform the login action when the user submits the login form
$scope.saveData = function() {
console.log('Doing login', $scope.action);
// Simulate a login delay. Remove this and replace with your login
// code if using a login system
$timeout(function() {
$scope.closeActionModal();
}, 1000);
};
})
にバインドされている
間違っまずやってる今、私はショーのリストのユーザーにこっちモーダルをバインドするトリングだということが何であるかを教えてもらえますそれが表示される前のもの
.controller('optionActionCtrl' , function($scope, $timeout , $http , $ionicModal){
$scope.closeActionModal = function() {
console.log('hello');
$scope.modal.hide();
};
// Open the login modal
$scope.openAddActionModel = function() {
$scope.modal.show();
// $('#action_datePicker').val(new Date());
};
$scope.showListOfUser = function(){
//call made to the server
//bind the modal to get it open
$ionicModal.fromTemplateUrl('templates/showUsers.html', {
scope: $scope
}).then(function(modal) {
debugger;
$scope.modal = modal;
});
$scope.modal.show();
// add all the users
$scope.users = ['a' , 'b' , 'c' , 'd'];
};
})
私がやっていること、それを何であるかを教えてください間違っ
UPDATE
今、私は状態を開き、問題は、私はすべてのHTMLがレンダリングされているというし、ユーザーを見ることができないんだけどあるbbutいくつかのデータを参照しようとしています。ここに私のビューのためのコードです:
<ion-view view-title="ShowUserList">
<ion-content>
<!-- <ion-checkbox ng-model='checkStatus1' ng-click="showAlert(checkStatus1)">
<h2 class="ng-binding">{{tittle}}</h2>
<span class="distance ng-binding"></span>
<h3 class="ng-binding">Created : {{created}}</h3>
<h3 class="ng-binding">Target : {{targetD}}</h3>
</ion-checkbox> -->
<ion-list>
<ion-item collection-repeat="user in users">
Hello, {{user}}!
</ion-item>
</ion-list>
</ion-content>
と私はあなたのoptionActionCtrl
コントローラを修正コントローラを少し
.controller('optionActionCtrl' , function($scope, $timeout , $http , $ionicModal , $state){
// Triggered in the login modal to close it
$scope.users = [];
$scope.closeActionModal = function() {
console.log('hello');
$scope.modal.hide();
};
// Open the login modal
$scope.openAddActionModel = function() {
$scope.modal.show();
// $('#action_datePicker').val(new Date());
};
$scope.showListOfUser = function(){
debugger;
// add all the users
$scope.users = ['a' , 'b' , 'c' , 'd'];
$state.go('app.UserListForAssigned')
};
})
新しいモデールが実際に作成される前に '$ scope.modal.show()'が呼び出されます。 'fromTemplateUrl'関数のコールバックの中に' $ scope.modal.show() 'を入れてください。 – Eric