gpt4 book ai didi

fullcalendar - 如何在 angular 7 的 fullcalendar 中使用语言环境

转载 作者:行者123 更新时间:2023-12-03 20:27:53 24 4
gpt4 key购买 nike

我需要在 angular 版本 7 中更改日历的语言。我没有找到太多关于此的文档。最主要的是更改日历上出现的日期的语言。

!-- 开始片段: js hide: false 控制台: true babel: false -->

import { Component, OnInit, ViewChild } from '@angular/core';
import { CalendarComponent } from 'ng-fullcalendar';
import { Options } from 'fullcalendar';

@Component({
selector: 'app-calendario',
templateUrl: './calendario.component.html',
styleUrls: ['./calendario.component.css']
})
export class CalendarioComponent implements OnInit {
//calendario
calendarOptions: Options;
displayEvent: any;
@ViewChild(CalendarComponent) ucCalendar: CalendarComponent;

constructor() { }

ngOnInit() {

this.calendarOptions = {
editable: true,
eventLimit: false,
header: {
left: '',
center: 'title',
right: 'month'
},

events: []
};
}

}

我尝试在日历选项中添加属性 locale = 'es',但它不起作用,
将此添加到我的 angular json,但我不知道如何实现它

     "scripts": [
"node_modules/fullcalendar/dist/locale/es.js"
]

最佳答案

谢谢加布里埃尔我用这种方法让它工作

首先确保您导入了您想要的语言

import esLocale from '@fullcalendar/core/locales/es';
import frLocale from '@fullcalendar/core/locales/fr';

在您的 html 文件中,在完整日历选择器中,您应该为区域设置和区域设置选项分配值。
    <full-calendar
defaultView="dayGridMonth"
[locales]="locales"
locale="es"
[weekends]="false"
[plugins]="calendarPlugins"></full-calendar>

然后是一个包含您需要的所有语言的变量
locales = [esLocale, frLocale];

关于fullcalendar - 如何在 angular 7 的 fullcalendar 中使用语言环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56889727/

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