2017-12-05 9 views
1

@ionic '에서 운이 // 수입하지 {Appsee} - 네이티브/appsee '; 난 당신이 변수를 인식 할 수 타이프에 대한 문제의 변수를 선언 할 것을보고 그렇지Ionic2은 이온 앱으로 사용자 정의 플러그인 (appsee 또는 uxcam)를 가져 오는 방법에 대해 나는 다음과 같은 가져 오기를 시도 <a href="https://www.appsee.com/docs/ios/ionic" rel="nofollow noreferrer">Appsee</a> 또는 <a href="https://uxcam.com/docs" rel="nofollow noreferrer">UXcam</a></p> <p>를 사용하려고하지만,하고

, 내가 한 그런

아래 선언 var에 코르도바 : 어떤; Appsee를 생성자하지만 여전히 행운에 :

// import { Appsee } from '@ionic-native/appsee'; 

declare var cordova:any; 

@Component({ 
    templateUrl: 'app.html' 
}) 
export class MyApp { 

    rootPage:any = LoginPage;  // FOR TESTING 

    constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) { 
    platform.ready().then(() => { 
    cordova.plugins.Appsee.start("my key"); 

     // Okay, so the platform is ready and our plugins are available. 
     // Here you can do any higher level native things you might need. 
     statusBar.styleDefault(); 
     splashScreen.hide(); 
    }); 
    } 
} 

는 또한 공공 appsee를 추가하는 시도했습니다.

모든 안내에 감사드립니다. 나는 받고있다 ReferenceError : cordova가 정의되지 않았다.

나는 사용자 정의 플러그인을 가져 어떻게

, appsee

편집 코드를 선언 var에 Appsee을 제안 추가 참고 : 어떤;

@Component({ 
    templateUrl: 'app.html' 
}) 
export class MyApp { 
    rootPage:any = LoginPage;  // FOR TESTING 

    constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) { 
    platform.ready().then(() => { 
    Appsee.start("my key"); 

     // Okay, so the platform is ready and our plugins are available. 
     // Here you can do any higher level native things you might need. 
     statusBar.styleDefault(); 
     splashScreen.hide(); 
    }); 
    } 
} 

답변

0

당신은 아래 그림과 같이 imports 아래에 넣어해야합니다.

//your other imports here 

declare var Appsee:any; 

@Component({ 
    templateUrl: 'app.html' 
}) 
export class MyApp { 
    @ViewChild(Nav) nav: Nav; 
+0

답장을 보내 주셔서 감사합니다. 그 성명서를 내 app.module.ts 또는 app.components.ts에 넣으시겠습니까? module.ts 파일에서 가져 오기를 시도했는데 오류가 발생했습니다. 위의 명령문을 component.ts 파일의 생성자 위에 놓으면 참조 오류가 발생합니다 ... – Generaldeep

+0

장소를 넣어야합니다. 당신이 그것을 사용하는 곳. 당신이'app.components.ts' 내부에서 사용하고있는 것 같습니다. 그래서 거기에 놓아 라. '수입 '바로 아래에 놓으십시오. – Sampath

+0

내 편집 된 코드를 참조하십시오. 맞다면 아직 참조 오류가 발생하고 있습니다. – Generaldeep