在 ngDialog 中更改模态的大小

Change the size of modal in ngDialog

ngDialog 是否允许不同大小的模态框?

例如bootstrap-angular模态有这样的功能:

$modal.open('sm') or $modal.open('lg')

这将分别打开小型和大型模式。

ngDialog中有这样的东西吗?

您可以使用该选项来设置自定义 class,例如你的 bootstrap class 左右:

ngDialog.open({
    className: 'ngdialog-theme-default'
});

您将在官方 api documentation.

中找到更多文档