如何在Ionic 4

时间:2018-08-30 09:09:50

标签: cordova ionic-framework cordova-plugins

我正在尝试在Ionic 4应用程序中使用此插件: https://github.com/IOCare/cordova-plugin-smartconfig

我使用ionic cordova plugin add https://github.com/IOCare/cordova-plugin-smartconfig.git安装了插件,并且似乎可以将其添加到项目中。 Cordova插件列表显示:cordova-plugin-smartconfig 1.0.4“ Cordova Smart Config”

我已经尝试过:

declare var espSmartConfig: any;并使用espSmartConfig.startConfig()

declare var cordova: any;并使用cordova.plugins.espSmartConfig.startConfig()

declare var window: any;并使用window.espSmartConfig.startConfig()

..但是所有内容都不明。我已经尝试在Android手机上使用Ionic DevApp,在PC上使用Chrome。

我确定我缺少明显的东西,但我不知道是什么。我找到的所有文档都是本地插件。

2 个答案:

答案 0 :(得分:0)

  1. 首先使用添加插件。

cordova插件添加https://github.com/IOCare/cordova-plugin-smartconfig.git

  1. 然后在app.ts中

声明var espSmartconfig;

  1. 使用此功能开始配置。

espSmartconfig.startConfig(“ ssid”,“ 00:00:00:00”,“密码”,“ NO”,1,function(res){},function(error){console.log(错误);});

  1. 记住完成后停止配置。

espSmartconfig.stopConfig(function(res){console.log(res);},function(error){console.log(error);});

答案 1 :(得分:0)

正如你们中的一些人建议的那样,我尝试构建该应用程序并在手机上运行它。像魅力一样工作:

declare var espSmartConfig: any;

所以这里的问题只是我用来测试应用程序的工具。

谢谢大家的投入!