2

我将 https://github.com/likeastore/ngDialog#api用于Ng Dialog

我想显示一个带有标题、消息和要显示的按钮的对话框。

提前致谢。

4

1 回答 1

2

使用 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'})
于 2016-08-29T20:00:16.377 回答