gpt4 book ai didi

javascript - 日期选择器格式不影响 ng-model Angular Material

转载 作者:行者123 更新时间:2023-12-02 14:12:11 25 4
gpt4 key购买 nike

我想要在我的 ng-model 中采用这种格式 ['DD-MM-YYYY'] 形式的 DatePicker。

我在 config() 中做了这个

$mdDateLocaleProvider.formatDate = function(date) {
var newDateFormate = moment(date).format('DD-MM-YYYY');
return newDateFormate ;
};

它会在 View 和日志中返回有效的日期格式。

screenshot

但这不会影响 ng-model 变量

 <md-datepicker ng-model="user.bod" md-placeholder="Enter birth date "> </md-datepicker>

因为当记录这个变量时它会给我这个日期格式

Mon May 30 2016 00:00:00 GMT+0200 (EET)

最佳答案

ng-model值为js Date对象。使用服务来字符串化模型值:

var dateString = $mdDateLocale.formatDate(valueFromNgModel);

关于javascript - 日期选择器格式不影响 ng-model Angular Material,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39435031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com