7

Angular-cli で Angular2 クロッパーを作成するには、cropper.js ( https://github.com/fengyuanchen/cropperjs ) を使用します。

私の指示は次のとおりです。

import {Directive, ElementRef, Input, OnInit} from '@angular/core';
import Cropper from 'cropperjs';

@Directive({
  selector: '[ng2-cropper]'
})
export class Ng2CropperJsDirective implements OnInit {
  @Input('options') options: any = {};
  private cropper;
  constructor(private _element: ElementRef) { }

  ngOnInit(): void {
    console.log(Cropper);
    this.cropper = new Cropper(this._element.nativeElement, this.options);
  }
}

からのエラーng serveは次のとおりです。 Cannot find module 'cropperjs'

しかしcropperjsが入っnode_modulesていて、私のものは次のangular-cli.jsonように更新されています:

"scripts": [
   "../node_modules/cropperjs/dist/cropper.js"
],

私は問題を解決するためのアイデアを持っていません..

4

1 に答える 1