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"
],
私は問題を解決するためのアイデアを持っていません..