当前位置:  开发笔记 > 编程语言 > 正文

如何使用angular-cli将Cropper.js用于Angular2项目?

如何解决《如何使用angular-cli将Cropper.js用于Angular2项目?》经验,为你挑选了1个好方法。

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

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



1> Volodymyr Bi..:

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

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

declare var Cropper: any;

它会让typscript与cropper一起工作

删除您拥有的导入

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

npm install --save @types/cropperjs

推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有