Angular Error - ReferenceError: $modal is not defined
问题 I am using code form a tutorial and modifying it a bit. I have run into an issue with the edit feature. I keep getting a "ReferenceError: $modal is not defined" here is my code. postCtrl: app.filter('startFrom', function() { return function(input, start) { if(input) { start = +start; //parse to int return input.slice(start); } return []; } }); app.filter('dateToISO', function() { return function(input) { input = new Date(input).toISOString(); return input; }; }); app.controller('postsCtrl',