gpt4 book ai didi

aurelia - 如何编写双向值转换器以使用 Aurelia 输入日期

转载 作者:行者123 更新时间:2023-12-01 13:51:30 26 4
gpt4 key购买 nike

以下代码不起作用,因为每次更新都会调用 fromView(),从而导致错误的日期构造。在 aurelia 的日期上使用双向过滤器的最佳解决方案是什么?

<input type=text" value.bind="date | dateFormat: 'DD/MM/YY'"></input>

import moment from 'moment';
export class DateFormatValueConverter {
toView(value, format) {
return moment(value).format(format);
}
fromView(str, format){
return moment(str, format);
}
}

最佳答案

这是一个老问题,但如果其他人想知道,更改绑定(bind)以重新评估模糊使用:

<pre>

<input type=text" value.bind="date | dateFormat: 'DD/MM/YY' &
updateTrigger:'blur'"></input>;

</pre>

关于aurelia - 如何编写双向值转换器以使用 Aurelia 输入日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31297451/

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