gpt4 book ai didi

javascript - moment.updateLocale 格式无法分配给 Angular 4 typescript 中类型 'void' 的参数

转载 作者:行者123 更新时间:2023-12-01 02:44:33 31 4
gpt4 key购买 nike

我目前正在开发一个 Angular 4 应用程序,该应用程序需要使用自定义时刻区域设置日期格式(假设没有年份),在此示例中为“lll”。在之前的 Angular 1.5 应用程序中,我有这样的配置:

moment.updateLocale('en', {
parentLocale: 'en',
longDateFormat: {
lll: 'MMM D HH:mm'
}
});

但是当我尝试在 typescript (Angular 4)中进行相同的操作时,我收到此错误:

[ts] Argument of type '{ parentLocale: string; longDateFormat: { lll: string; }; }' is not assignable to parameter of type 'void | LocaleSpecification'. Type '{ parentLocale: string; longDateFormat: { lll: string; }; }' is not assignable to type 'LocaleSpecification'. Types of property 'longDateFormat' are incompatible. Type '{ lll: string; }' is not assignable to type 'LongDateFormatSpec'. Property 'LTS' is missing in type '{ lll: string; }'. (property) longDateFormat: { lll: string; }

我对此还很陌生,所以...我应该在哪里解决这个问题?

最佳答案

对于那些想要寻找这个问题答案的人来说,您必须在那里传递所有 longDateFormat,而不仅仅是您想要更改的那个。

interface LongDateFormatSpec {
LTS: string;
LT: string;
L: string;
LL: string;
LLL: string;
LLLL: string;

// lets forget for a sec that any upper/lower permutation will also work

lts?: string;
lt?: string;
l?: string;
ll?: string;
lll?: string;
llll?: string;
}

例如:

moment.updateLocale('en-gb', {
longDateFormat: {
LT: 'HH:mm',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'MMM D HH:mm', // Changed here
LLLL: 'dddd, D MMMM YYYY HH:mm'
},
});

关于javascript - moment.updateLocale 格式无法分配给 Angular 4 typescript 中类型 'void' 的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47338993/

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