我正在使用https://github.com/nakupanda/bootstrap3-dialog在我的 web 应用程序上显示对话框。
$scope.importFileWithSettings = function(){
BootstrapDialog.show({
type: BootstrapDialog.TYPE_INFO,
message: "<div ng-include=\"'importform.html'\"></div>",
title: 'Title',
});
};
importform.html 位于同一目录中。当对话框显示时,它不显示 importform.html 内容。如何做对(我对 angularJS 和 bootsrap 比较陌生)?