带有angularjs的过滤日期中的ReferenceError

时间:2015-07-09 22:07:01

标签: javascript angularjs datetime time

$scope.dates = new Date();
var ed = new Date($filter('date')($scope.dates,'hh:mm:ss'));

在第二行我想要时间,但我得到参考错误。

我的问题是什么?

 (function(){

var app = angular.module('notesApp',['angular-markdown-editable']);

 app.controller('notesController', function($scope, $interval){

function updateTime() {
  $scope.dates = new Date();
  var ed = new Date($filter('date')($scope.dates,'hh:mm:ss'));
  alert(ed);
      }
...

1 个答案:

答案 0 :(得分:2)

您需要在控制器声明中注入$filter,例如:

app.controller('notesController', function($scope, $interval, $filter){ // <-- filter was added at the end

我理解这个问题是关于角度的,但我建议您考虑使用javascript日期函数,如:

var date = new Date();
var seconds = date.getSeconds();
var minutes = date.getMinutes();
var hour = date.getHours();