我将 https://github.com/likeastore/ngDialog#api用于Ng Dialog。
我想显示一个带有标题、消息和要显示的按钮的对话框。
提前致谢。
使用 ng-dialog,您可以使用自己创建的模板(带有标题按钮、消息)等。https://github.com/likeastore/ngDialog#template-string
例如:
ngDialog.openConfirm({template: "<h3>Title<h3> ..."})
或者您可以使用 templateCache 使代码干净:https ://docs.angularjs.org/api/ng/service/ $templateCache
$templateCache.put('my-template.html', "html");
ngDialog.openConfirm({template: 'my-template.html'})