Estoy tratando de mostrar la fecha actual en mi aplicación usando la biblioteca JavaScript de momento, recibo un mensaje de error de referencia.
Tengo el archivo moment.js en mi carpeta de scripts y mi archivo Bookshow.js en la carpeta de recursos.
También me referí a este enlace pero sigo enfrentando el problema de referencia: AngularJs y moment.js no funcionan
Error de detalles
ReferenceError: moment is not defined at new <anonymous> (Bookshow.js:2) at Object.instantiate (angular.js:3501) at Object.canonymous> (angular.js: 3526) at Object.invoke (angular.js:3492) at Object.$get (angular.js:3112) at Object.invoke (angular.js:3492) at angular.js:3827 at d (angular.js:3193) at e (angular.js:3223) at Object.invoke (angular.js:3231)Código
Bookshow.js book.service('ApplDate', ['$scope', '$http', '$filter', function($scope, $http, $filter) { $scope.today = moment(); console.log("today date " + today.format('MM/DD/YYYY')); $scope.applDate = today.format('MM/DD/YYYY'); }]);