0

我正在尝试将camanjs与我的 ionic2 + typescript 项目一起使用。

我还看过Mike 的 Ionic and Typings 博客文章,但是它显示添加了一个已经在 Typings 中的库

然后我从 josh 找到了这篇关于添加使用 CDN 方法的 goole 地图的博客文章。

到目前为止,通过关注他们两个,我已经完成了关注,

通过 CDN 将 camanjs 添加到index.html文件中

#index.html
<script src="https://cdnjs.cloudflare.com/ajax/libs/camanjs/4.1.2/caman.full.js"></script>
<script src="cordova.js"></script>
...

以下是我的 ts 文件

#home.ts 
import {Component} from '@angular/core';
import {NavController} from 'ionic-angular';

declare var Camanjs: any;

@Component({
  templateUrl: 'build/pages/home/home.html'
})
export class HomePage {
  constructor(public navCtrl: NavController) {
  }

  addFilter(){
     Camanjs("#image", function(){
       this.sinCity();
       this.render();
     })
  }
}

和我的 html 文件。(当用户单击我要应用过滤器的按钮时)

#home.html
<ion-header>
  <ion-navbar>
    <ion-title>
      Ionic Blank
    </ion-title>
  </ion-navbar>
</ion-header>

<ion-content padding>
  <button (click)="addFilter()">Filter</button>
  <img id='image' src="https://d339b5nop2tkmp.cloudfront.net/uploads/pet_photos/2016/7/13/469479_e76aa_340x340_af1c8.jpg">
</ion-content>

但是当我点击addFilter()我得到以下错误

browser_adapter.js:84 ReferenceError: Camanjs is not defined
    at HomePage.addFilter (home.ts:14)
    at DebugAppView._View_HomePage0._handle_click_13_0 (HomePage.template.js:201)
    at view.js:375
    at dom_renderer.js:254
    at dom_events.js:27
    at ZoneDelegate.invoke (zone.js:323)
    at Object.onInvoke (ng_zone_impl.js:53)
    at ZoneDelegate.invoke (zone.js:322)
    at Zone.runGuarded (zone.js:230)
    at NgZoneImpl.runInnerGuarded (ng_zone_impl.js:86)

但是,我没有通过 IDE 或在编译时收到任何编译器错误,任何帮助将不胜感激。

请注意这是我之前问题的扩展/更详细的版本

4

1 回答 1

1

而不是使用Camanjs...try :

Caman('#my-image', function () {
  // ...
});

因此,替换Camanjs为 justCaman应该允许您调用该库上的方法。

于 2016-08-21T06:11:06.117 回答