Questions tagged «ng-controller»

15
如何在控制器中使用过滤器?
我写了一个过滤器函数,它将根据您传递的参数返回数据。我希望控制器具有相同的功能。是否可以在控制器中重用过滤器功能? 到目前为止,这是我尝试过的: function myCtrl($scope,filter1) { // i simply used the filter function name, it is not working. }

10
Angular.js:'控制器作为语法'和$ watch
使用controller as语法时如何订阅属性更改? controller('TestCtrl', function ($scope) { this.name = 'Max'; this.changeName = function () { this.name = new Date(); } // not working $scope.$watch("name",function(value){ console.log(value) }); }); <div ng-controller="TestCtrl as test"> <input type="text" ng-model="test.name" /> <a ng-click="test.changeName()" href="#">Change Name</a> </div>

4
AngularJS-在控制器中转换日期
有人可以建议我如何将日期从这种1387843200000格式转换为24/12/2013 控制器中的日期吗? 仅供参考,我的日期将以这种方式存储,input type="date"并且完全不填充绑定到带有字段的编辑表单时。 #Plunker演示在这里。 编辑Ctrl app.controller("EditCtrl", [ "$scope", "$filter", "db" function ($scope, $filter, db){ // this gets me an item object var item = db.readItem(); // item date = 1387843200000 // this returns undefined item.date = $filter('date')(date[ item.date, "dd/MM/yyyy"]); }]); Edit.html-模板 <form name="editForm" class="form-validate"> <div class="form-group"> <label for="date">Event date.</label> …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.