web-dev-qa-db-ja.com

fullcalendar」には、エクスポートされたメンバー「オプション」がありません。-Angular

私はこれに従います ApNg2Fullcalendar 構造を段階的にインストールします、私は使用しましたAngular 5、

しかし、私は次のエラーがありました enter image description here

node_modules/ap-angular2-fullcalendar/src/calendar/calendar.d.ts(3,10):エラーTS2305:モジュール '' fullcalendar ''には、エクスポートされたメンバー 'Options'がありません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(695,36):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(696,29):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(697,20):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(759,22):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(775,50):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(988,23):エラーTS2304:名前「JQueryEventObject」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(1401,70):エラーTS2304:名前「JQueryAjaxSettings」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(1603,50):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(1623,50):エラーTS2304:名前「JQueryPromise」が見つかりません。 node_modules/fullcalendar/dist/fullcalendar.d.ts(2588,50):エラーTS2304:名前「JQueryPromise」が見つかりません。

それを修正する方法?私index.component.ts

import { Component,  } from '@angular/core';
import 'Fullcalendar';



@Component({
  selector: 'app-index',
  templateUrl: './index.component.html',
  styleUrls: ['./index.component.css']
})
export class IndexComponent  {
  title = 'app';

  calendarOptions:Object = {
    height: 'parent',
    fixedWeekCount : false,
    defaultDate: '2016-09-12',
    editable: true,
    eventLimit: true, // allow "more" link when too many events
    events: [
      {
        title: 'All Day Event',
        start: '2016-09-01'
      },
      {
        title: 'Long Event',
        start: '2016-09-07',
        end: '2016-09-10'
      },
      {
        id: 999,
        title: 'Repeating Event',
        start: '2016-09-09T16:00:00'
      },
      {
        id: 999,
        title: 'Repeating Event',
        start: '2016-09-16T16:00:00'
      },
      {
        title: 'Conference',
        start: '2016-09-11',
        end: '2016-09-13'
      },
      {
        title: 'Meeting',
        start: '2016-09-12T10:30:00',
        end: '2016-09-12T12:30:00'
      },
      {
        title: 'Lunch',
        start: '2016-09-12T12:00:00'
      },
      {
        title: 'Meeting',
        start: '2016-09-12T14:30:00'
      },
      {
        title: 'Happy Hour',
        start: '2016-09-12T17:30:00'
      },
      {
        title: 'Dinner',
        start: '2016-09-12T20:00:00'
      },
      {
        title: 'Birthday Party',
        start: '2016-09-13T07:00:00'
      },
      {
        title: 'Click for Google',
        url: 'http://google.com/',
        start: '2016-09-28'
      }
    ]
  };

  onCalendarInit(initialized: boolean) {
    console.log('Calendar initialized');
  }

}

app.module.ts

import { CalendarComponent } from 'ap-angular2-fullcalendar';
import { CalendarModule } from 'ap-angular2-fullcalendar';

@NgModule({
  declarations: [
    AppComponent,

    IndexComponent,

    CalendarComponent

  ],
  imports: [
    BrowserModule,
    NgbModule.forRoot(),
    AngularFontAwesomeModule,

    routes


  ],

index.component.html

<angular2-fullcalendar [options]="calendarOptions" (initialized)="onCalendarInit($event)"></angular2-fullcalendar>
10
core114

問題は、ap-angular2-fullcalendar node_modules内のfullcalendarパッケージにあります。フルカレンダーが更新されました.8.が必要です.7. ...私の解決策は...

ステップ1: npm install [email protected] --save;

ステップ2:package.jsonで書き込み/編集 'postinstall' to "rm -Rf ./node_modules/app-angular2-fullcalendar/node_modules

13

これを実行してください-おそらくAngular CLIを使用しています:

npm i @types/fullcalendar -s

タイピングがありません

2
Devin McQueeney

私も同じ問題を抱えていました。フルカレンダーの依存関係をバージョン3.6.1に正確に更新することで解決しました。

npm install --save [email protected]

1
Mati Cassanelli

私はいくつかの解決策を見つけました私にとってはその仕事です私はnpm install [email protected]に更新しました

1
core114

インストール後npm install [email protected] --save問題が発生しています

Module ''fullcalendar'' has no exported member 'Options' in angular 8。

0