使用html中的angularjs显示当前系统时间

时间:2015-12-09 03:26:22

标签: html angularjs time

我想在我正在制作的页面中显示当前的系统时间,但似乎无法正常工作。我不知道为什么

void Tree::DestroyRecursive(TreePtr node)
{
    if (node)
    {
        DestroyRecursive(node->left);
        DestroyRecursive(node->right);
        delete node;
    }
}

Tree::~Tree()
{
    DestroyRecursive(Root);
}

另一个代码

<script src="angular/angular.min.js"></script>
<script src="css/bootstrap.min.js"></script>
<script src="css/jquery.min.js"></script>
<script src="angular/angular-ui.js"></script>

2 个答案:

答案 0 :(得分:0)

如@AnikIslamAbhi所述,有两个问题需要解决。

  1. app应该是mymodal而不是
  2. jquery
  3. 之前加angular

    更新代码后,它可以正常工作。

    See JSFiddle

    <强>更新

    但是,更好的做法是不将Angular模块分配给变量。相反,使用angular.module()来获取模块。

    // This declares a module (note the second parameter)
    angular.module('MyModule', []);
    
    // This retrieves a module    
    angular
      .module('MyModule')
      .controller('MyController', function() {});
    
    // Module declaration can be chained with controllers, filters, etc.
    angular
      .module('AnotherModule', [])
      .controller('AnotherController', function() {})
      .filter('AnotherFilter', function() {});
    

    结帐the developer guide on modules

答案 1 :(得分:0)

修改您给定的代码并包含HH:mm:ss的时间。

var mymodal = angular.module('mymodal', [])
      mymodal.controller('MyController', function ($scope, $filter) {
        var date = new Date();
        $scope.ddMMyyyy = $filter('date')(new Date(), 'dd/MM/yyyy HH:mm:ss'); 
      });