0

我想将我的字符串日期分配给 ui-date

我的观点

 <input ng-switch-when="datePicker" type="text" ui-date-format ui-date class="form-control" ng-model="field.value" />

和我的日期字符串“12/12/2015”

但我收到此错误“错误:ng-Model 值必须是 Date 对象 - 目前它是一个字符串 - 使用 ui-date-format 将其从字符串转换”

请有人帮助我,谢谢

4

1 回答 1

1

尝试按照控制器中的说明进行操作(错误:ng-Model 值必须是 Date 对象

$scope.field.value = new Date($scope.field.value);

或者将带有日期掩码的日期格式属性添加到输入标签

ui-date-format="DD/MM/YYYY"
于 2016-02-01T09:17:35.050 回答