7

我想使用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"
],

我没有任何想法来解决这个问题..

4

1 回答 1

7

我不认为cropper有打字所以当你这样做时import Cropper from 'cropperjs';它不起作用

简单的解决方案是在 typings.d.ts 添加

declare var Cropper: any;

它将让 typscript 以动态方式与裁剪器一起使用

删除您拥有的导入

正确的解决方案是导入安装类型

npm install --save @types/cropperjs
于 2017-01-24T23:56:25.883 回答