我无法将模态服务加载到我的简单菜鸟角度控制器示例中,我在下面包含了plunker。任何人都可以建议我做错了吗?任何帮助非常感谢! 感谢
http://plnkr.co/edit/VVyMsRMVg5DzeqpnvWSQ?p=preview
代码段
app.controller('MainController', ['$scope', 'FService', 'angularModalService', function($scope, FService, angularModalService) {
$scope.show = function() {
angularModalService.showModal({
templateUrl: 'modal.html',
controller: "ModalController"
}).then(function(modal) {
modal.element.modal();
modal.close.then(function(result) {
$scope.message = "You said " + result;
});
});
};
}
答案 0 :(得分:1)
我发现这非常有帮助。希望你也这样做。
http://weblogs.asp.net/dwahlin/building-an-angularjs-modal-service