admin管理员组文章数量:1345399
I'm trying to update dates in my angular 6 application using Intl.DateTimeFormat and passing locale and dateStyle, timeStyle options. I'm able to get the custom date while trying in browser console however as soon as I try to integrate the same in my app, it throws pilation error: Type '{ dateStyle: string; timeStyle: string; }' has no properties in mon with type 'DateTimeFormatOptions'.
transformDate() {
const options = { dateStyle: "full", timeStyle: "medium" };
console.log(new Intl.DateTimeFormat('en-US',options).format(this.date));
}
I'm trying to update dates in my angular 6 application using Intl.DateTimeFormat and passing locale and dateStyle, timeStyle options. I'm able to get the custom date while trying in browser console however as soon as I try to integrate the same in my app, it throws pilation error: Type '{ dateStyle: string; timeStyle: string; }' has no properties in mon with type 'DateTimeFormatOptions'.
transformDate() {
const options = { dateStyle: "full", timeStyle: "medium" };
console.log(new Intl.DateTimeFormat('en-US',options).format(this.date));
}
Share
Improve this question
asked Dec 31, 2019 at 5:57
Shashank SalajShashank Salaj
632 silver badges10 bronze badges
3 Answers
Reset to default 11It is the datatype issue. You need specify the data type for options.
You can try like -
const options: any = { dateStyle: "full", timeStyle: "medium" };
Basically Intl.DateTimeFormat accepts options of type DateTimeFormatOptions, and it has the properties
interface DateTimeFormatOptions {
localeMatcher?: string;
weekday?: string;
era?: string;
year?: string;
month?: string;
day?: string;
hour?: string;
minute?: string;
second?: string;
timeZoneName?: string;
formatMatcher?: string;
hour12?: boolean;
timeZone?: string;
}
Since dateStyle and timeStyle not available , it is throwing an error.
edit: actiually it appears i've answered the wrong question by mistake, for your situations use a trick if i need it to be the default format of en-US
; it won't let you put nothing, but for some reason it will allow an empty array. if you really want it short, put any single digit number, which will also be assumed to be 'en-US'
function numericDate() {
var ops = {year: 'numeric'};
ops.month = ops.day = '2-digit';
return new Date().toLocaleDateString([], ops);
}
console.log(numericDate());
In the node, by default, we do not have access to the dateStyle property as in browsers.
I use the following configuration:
const TimeFormat = () => {
const options = {
day: "2-digit",
month: "2-digit",
year: "numeric",
hour: "numeric",
minute: "numeric",
second: "numeric",
fractionalSecondDigits: 3,
hour12: false,
timeZone: "UTC",
};
return `${Intl.DateTimeFormat("pt-BR", options).format(
data
)}.${data.getMilliseconds()}`;
};
本文标签: javascriptHow to customise IntlDateTimeFormat dateStack Overflow
版权声明:本文标题:javascript - How to customise Intl.DateTimeFormat date? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743713114a2526279.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论