web-dev-qa-db-ja.com

プロパティ 'take'はタイプ 'Store <State>' ngrx / storeに存在しません

機能で状態を選択するときにプロパティ「take」を使用しようとしていますが、エラーProperty 'take' does not exist on type 'Store<State>。誰か、何が起こっているのか手掛かりがありますか?テンプレートをフォームに変更する「スペースを追加」ボタンをユーザーがいつクリックしたかを特定する必要があるためです。このモードは親のテンプレートも変更するため、@ ngrx/storeで管理しています。

私のコード:

import { Component, Input, OnInit, OnDestroy } from '@angular/core';
import { NgForm } from '@angular/forms';
import { Store } from '@ngrx/store';
import { Subscription } from 'rxjs/Subscription';

    import { Space } from '../../../shared/space.model';
    // import { SpacesService } from '../../spaces.service';
    import * as SpacesActions from '../../store/spaces.actions';
    import * as fromSpaces from '../../store/spaces.reducers';

    @Component({
      selector: 'app-space-item',
      templateUrl: './space-item.component.html',
      styleUrls: ['./space-item.component.scss']
    })
    export class SpaceItemComponent implements OnInit, OnDestroy {
      @Input() space: Space;
      @Input() index: number;
      private addMode: boolean;
      private editMode = false;
      // updatedSpaceName: string;
      // updatedSpace: Space;
      private subscription: Subscription;
      updatedSpaceName: string;
      updatedPicture: string;

      constructor(
                  // private spacesService: SpacesService,
                  private store: Store<fromSpaces.FeatureState>) { }

      ngOnInit() {
        this.subscription = this.store.select('spaces')
          .take(1)
          .subscribe(
            data => {
              if (data.addMode) {
                this.addMode = data.addMode;
              } else {
                this.addMode = false;
              }
            }
          );
      }
      ngOnDestroy() {
        this.subscription.unsubscribe();
      }

      onEnableEdit() {
        this.editMode = true;

        this.updatedSpaceName = this.space.name;
        this.updatedPicture = this.space.picture;
        // console.log(this.updatedSpace);

      }
      onUpdate() {
        this.onCancelEdit();
        const updatedSpace = new Space(this.updatedSpaceName, this.updatedPicture);
        // this.spacesService.updateSpace(updatedSpace, this.index);
        this.store.dispatch(new SpacesActions.UpdateSpace({index: this.index, updatedSpace}));
      }

      onCancelEdit() {
        this.editMode = false;
        // this.updatedSpace = this.space;
      }

      onCancelAdd() {
        // this.spacesService.addModeActivated.next(false);
        this.store.dispatch(new SpacesActions.SwitchAddMode(false));
      }

      onDelete() {
        // this.spacesService.deleteSpace(this.index);
        this.store.dispatch(new SpacesActions.DeleteSpace(this.index));
      }

      onAddSpace(form: NgForm) {
        const value = form.value;
        const newSpace: Space = new Space(value.spaceName);

        // this.spacesService.addSpace(newSpace);
        this.store.dispatch(new SpacesActions.AddSpace(newSpace));
      }
    }
11
Wagner D'Amaral

それをインポートしてみてください

 import 'rxjs/add/operator/take'; 

angular 6

import { take } from 'rxjs/operators';
30
Fateh Mohamed

angular 6の場合:

1)rxjsからインポート

import { take } from 'rxjs/operators';

2)pipeメソッドで使用する

.pipe(take(1))
23
ego

angularの最新バージョンとの互換性の問題です。rxjs-compatが必要です。

解決:

npm install --save rxjs-compat
2
Diego Enrique