我正在使用Angular Material 1.1.1,AngularJS 1.5.8和Grunt with grunt-angular-templates 0.5.7。建立我的應用程序後,我的$ mdDialog沒有找到視圖。但是我在模板緩存中找到了它。
angular.module('app').controller("myController", ["$mdDialog", function($mdDialog) {
$scope.showDialog = function() {
$mdDialog.show({
controller: myModalController,
templateUrl: '/views/directives/modal/myModal.html',
parent: angular.element(document.body),
clickOutsideToClose: true
}).then(function() {
//success action
}, function() {
//fail action
});
}
var myModalController = function($scope, $mdDialog) {
$scope.hide = function() {
$mdDialog.hide();
}
};
}]);
我在做什麼錯?這是我的步兵任務:
ngtemplates: {
dist: {
options: {
module: 'app',
htmlmin: '<%= htmlmin.dist.options %>',
usemin: 'scripts/scripts.js',
prefix: '/'
},
cwd: '<%= yeoman.app %>',
src: 'views/**/*.html',
dest: '.tmp/templateCache.js'
}
}
*編輯 我得到這個錯誤:
vendor.f56bbb37.js:5 Error: [$injector:unpr] Unknown provider: aProvider <- a
,這就是我的緩存看起來像
angular.module("app").run(["$templateCache",function(a){
a.put("/views/directives/modal/myModal.html",'<div>this is my modal</div>')
}]);
沒有工作。我剛剛更新了我的請求 –
它現在應該工作,我已經做了一個小的改變,你可以請再次檢查,讓我知道嗎? – Jigar7521