3
我有以下控制器在我angularjs控制器如何angularjs控制器使用轉換器對象的值
.controller('taskCtrl', ['$scope', function ($scope) {
$scope.getRef = function() {
return getTask();
};
$scope.save = function() {
$.extend(true, getTask(), $scope.data);
};
}])
和我的模板:
<tr>
<td>
<label class="ngTemplateTitle" > create Date</label>
</td>
<td>
<input class="form-control" id="data.creationDate" type="text"ng-model="data.creationDate"/>
</td>
</tr>
我需要轉換和查看陽曆日期的形式回曆。 然後用戶修改後的對象的值將hijri轉換爲公曆日期。