我在角度js中使用输入类型=“日期”,如下所示。
<input type="date" ng-model="form.dateValue">
1)提交时,将form.dateValue转换为指定的日期格式
2)从api调用中检索时,将form.dateValue转换为Date Object
我的解决方案:
$scope.submitForm = function() {
form.dateValue = // logic to convert to specific date format
}
$scope.retrieveForm = function() {
form.dateValue = // logic to convert to Date object
}
我的实际问题: 只要存在包含输入类型=“日期”的表单,重复每个过程就会很繁琐和重复。
我的预期解决方案:
<input type="date" date-model="form.dateValue">
angular.directive('dateModel', function() {
});
注意:只要忽略日期转换的逻辑需求,因为我已经实现了日期