我想使用cropper.js ( https://github.com/fengyuanchen/cropperjs ) 创建一个带有 angular-cli 的 Angular2 裁剪器。
我的指令是:
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"
],
我没有任何想法来解决这个问题..