我在我的应用程序中使用ngDialog并且我想创建一个通用的确认模式,我可以在需要时使用它,确认消息将会有所不同.
我的问题:
1-创建一个带有ngDialog功能的指令是一个好主意,它的设计是什么?
2- ngDialog代码中confirm()和openConfirm()之间的区别是什么.
提前致谢
好吧,回答你的问题,
原文链接:https://www.f2er.com/angularjs/140250.html1 – 您可以为其创建一个指令,具有范围,例如您传递确认类型的类型(即提交提交确认,删除确认删除),指令应根据您指定的类型呈现消息.
2 – openConfirm()是一种ngDialog,它只能通过确认动作来关闭(与ngDialog.open()不同),所以你不能在这里点击对话框中的任何地方时关闭对话框. confirm()只是一个用来关闭对话框的方法,你使用这个方法来关闭对话框并解决打开模态时返回的promise,这样它就可以继续< button ng-click =“confirm() “>确认< /按钮>在对话框内. 希望这对你有所帮助 更新
openConfirm()
Opens a dialog that by default does not close when hitting escape or clicking outside the dialog window. The function returns a promise that is either resolved or rejected depending on the way the dialog was closed.
要解决这个承诺,您的对话框应如下所示:
使用ngDialog控制器
ngDialog.openConfirm({ template: '<div></div>',controller: ['$scope',function($scope) { // Controller logic here }] }).then(function (success) { // Success logic here },function (error) { // Error logic here });
使用指令控制器
ngDialog.openConfirm({ template: '<div></div>',scope: $scope,// <- ability to use the scopes from directive controller }).then(function (success) { // Success logic here },function (error) { // Error logic here });
只要在对话框中传递范围:$scope,就可以使用指令控制器
这是一个demo,向您展示如何使用类型