3

我在 Ionic 2 项目中使用第三方 cordova 插件时遇到问题,其中一些在 Ionic Native 中不可用。就我而言,Ionic Native 之外的插件,我不需要导入它们。它们可以直接使用。

我正在使用ibm-mfp-corehttps://www.npmjs.com/package/ibm-mfp-core)插件。所有我想使用的BMSClient.initialize()方法来初始化 IBM Bluemix SDK。另外还有一些其他内置的。但它们都没有在cordova.plugins.

这是片段:

import { Component } from '@angular/core';
import { Platform, ionicBootstrap } from 'ionic-angular';
import { StatusBar } from 'ionic-native';
import { TabsPage } from './pages/tabs/tabs';

declare let cordova:any;

@Component({
  template: '<ion-nav [root]="rootPage"></ion-nav>'
})
export class MyApp {

  public rootPage: any;

  constructor(private platform: Platform) {
    this.rootPage = TabsPage;

    platform.ready().then(() => {
      // 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();

      // initialize IBM BLuemix SDK
      //BMSClient.initialize("https://pearl.mybluemix.net", "1a1ab2e9-4f5a-4db6-9ba3-2da97349a160");

      typeof cordova.plugins.MFPCore != 'undefined'?alert('MFP found'):alert('MFP NOT found');
    });
  }
}

ionicBootstrap(MyApp);
4

1 回答 1

0

你见过这些资源吗?他们有点老,但仍然可以帮助您解决问题:

https://developer.ibm.com/bluemix/2016/01/20/bluemix-mobile-client-access-services-in-ionic-apps/

https://www.youtube.com/watch?v=UObmJQtxixs

如果这些没有帮助,请告诉我。

更新

截至今天,一个新的bms-core 插件已经发布。我们一直在努力通过彻底改造我们的cordova插件来改善cordova体验。

@somnathbm 尝试使用更新的插件,看看你是否仍然遇到同样的问题。

于 2016-09-15T16:24:13.133 回答