angularjs에 있는 ui.bootstrap의 모달 구성 요소는 특히 팝업 모달 상자에 더 복잡한 테이블이 있는 경우 페이지 컨트롤러와 모달 상자 컨트롤러 간의 통신을 쉽게 구현할 수 있습니다. 정보는 사용자가 입력해야 합니다. 아래 주제로 이동해 보겠습니다.
전역 모달 상자 인스턴스의 컨트롤러 등록
angular.module('myApp.Controllers', [ 'ui.bootstrap' ]) .controller('appModalInstanceCtrl', function ($scope,$uibModalInstance,modalDatas) { var $ctrl = this; $scope.modalDatas = modalDatas; //双向绑定,方便在确认中回传可能修改的字段 // $ctrl.insta $ctrl.ok = function (val) { $scope.modalDatas.result = val; $uibModalInstance.close( $scope.modalDatas //在模态框View中修改的值传递回去,view中可以直接添加属性 ); }; $ctrl.cancel = function () { $uibModalInstance.dismiss('cancel'); }; })#🎜 🎜#
새 템플릿 파일 src /templates/modalViews/confirm.html
<p class="modal-header"> <h3 class="modal-title">标题</h3> </p> <p class="modal-body"> <p class="content"> <label class="label">确认信息:</label> <input type="text" ng-model="modalDatas.msg"> </p> <p class="content"> <label class="label">备注信息:</label> <input type="text" ng-model="modalDatas.content"> </p> </p> <p class="modal-footer"> <button class="btn btn-primary" type="button" ng-click="$ctrl.ok()">确定</button> <button class="btn btn-default" type="button" ng-click="$ctrl.cancel()">取消</button> </p>
페이지 트리거 코드:
<button type='button' class='btn btn-primary' ng-click="openModal('md', 'confirm')">打开'confirm' modal</button>#🎜 🎜#관리페이지에서 시작 코드
의 컨트롤러에 openModal 함수를 등록합니다. ui.bootstrap에서 제공하는 $uibModal
서비스를 이용하세요 모달 상자를 생성하려면 모달 상자 보기와 컨트롤러만 구성하면 됩니다. $uibModal
은 구성을 위한 유일한 open(options)
메소드를 제공합니다. (자세한 내용을 알아보려면 PHP 중국어 웹사이트
을 방문하세요.) $uibModal
来创建模态框,只需要简单的配置模态框视图和控制器。$uibModal
提供唯一的方法open(options)
配置。(想看更多就到PHP中文网AngularJS开发手册中学习)
options
参数:animation
(Type: boolean, Default: true) 模态框打开/关闭动画控制appendTo
(Type: angular.element, Default: body) 指定将模态框代码插入位置,默认插入到bodybackdrop
(Type: boolean|string, Default: true) 遮罩层显示控制backdropClass
(Type: string) 给遮罩层添加额外classbindToController
(Type: boolean, Default: false) - 当使用 controllerAs
(比如设置为$ctrl) 并且此属性设置为true时,可以把$scope绑定到controller.主意$scope是能够管理模态框的scope,也就是说,如果模态框默认插入到body,那么会将管理body标签的控制器绑定到$ctrl,所以最好结合appendTo
一起使用。component
(Type: string, Example: myComponent) 将模态框当做组件方式使用controller
(Type: function|string|array, Example: MyModalController) 指定模态框控制器controllerAs
(Type: string, Example: ctrl) 控制器别名resolve
(Type: Object) - 给模态框传递数据;
templateUrl (Type: string) 指定模态框视图层模板size
위 내용은 Angle.js에서 ui.bootstrap의 모달 구성 요소를 우아하게 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!