在我的上一个设计中,我创建了自己的模板,没有引导程序。我用 angularjs 注入我的代码。
所以这是我的情况:我想在编辑模板中显示我的数据表单,我需要模态显示
有没有办法建立我自己的模态指令?
我有这样的代码:
angular.directive('myModal', function() {
var template = '<div class="modal" ng-show="viewModal">modal here!<a ng-click="close()">Close</a></div><a ng-show="showModal" ng-hide="viewModal" ng-click="view()">Click me</a>';
return {
scope: {
title: '=',
template: '='
},
link: function(scope, element, attrs) {
scope.view = function() {
scope.viewModal = true;
}
scope.close = function() {
scope.viewModal = false;
}
}
}
});
感谢你的回答