angularjs | date input not showing ng-model value

前端 未结 3 877
庸人自扰
庸人自扰 2020-12-11 02:53

date input is not showing the date until the user change it

// showing the date

{{someDate | date}}

// not showing the date. instead showi
相关标签:
3条回答
  • 2020-12-11 03:03

    I think the answer is you must upgrade to angularjs 1.3 or newer. Details in angular.js/pull/5864. The commit implementing this is pretty large to try to backport to 1.2 IMHO.

    0 讨论(0)
  • 2020-12-11 03:05

    I've created a simple directive to enable standard input[type="date"] form elements to work correctly with AngularJS ~1.2.16.

    Please look here for details: https://github.com/betsol/angular-input-date

    And here's the demo: http://jsfiddle.net/F2LcY/2/

    Hope it helps!

    0 讨论(0)
  • 2020-12-11 03:08

    Try converting the someDate scope variable from string to Date format and then if you use input type="date" ng-model="someDate" . This solved my problem .

    0 讨论(0)
提交回复
热议问题