我有以下控制器。
app.controller("testCtrl", function(){
$scope.utcTime = 1380150771;
$scope.parseTime = function(t){
//return local time string
}
});
在视图中,我有
<input type="text" ng-model="parseTime(utcTime)" />
它不工作。我可以将 ng-model 绑定到返回字符串的方法吗?在输入按钮中显示值的任何替代方法?