我在$ scope中有一个日期。页面加载后,我希望在$ scope中的值上设置输入type =“ date”字段值。
<input class="form-control" type="date"
ng-model="asso.formation_of_association"
placeholder="" />
但是我只在输入字段上看到dd-mm-yyy
答案 0 :(得分:1)
您应该显示代码,因为我准备了一个示例,它可以工作。
<div ng-app>
<div ng-controller="myCtrl">
<input type="date" ng-model="date.formation_of_association">
</div>
</div>
function myCtrl($scope) {
$scope.asso = {
'formation_of_association': '2018-06-21'
};
}
答案 1 :(得分:0)
使用ng-model
检查typeof
值的类型
如果typeof
在输入文件中返回date
类型的date