欢迎各位兄弟 发布技术文章
这里的技术是共享的
app.controller('myCtrl', function($scope, $interval) {
$scope.theTime = new Date().toLocaleTimeString();
$interval(function () {
}, 1000);
});