我正在尝试在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。
我确定我缺少明显的东西,但我不知道是什么。我找到的所有文档都是本地插件。
答案 0 :(得分:0)
cordova插件添加https://github.com/IOCare/cordova-plugin-smartconfig.git
声明var espSmartconfig;
espSmartconfig.startConfig(“ ssid”,“ 00:00:00:00”,“密码”,“ NO”,1,function(res){},function(error){console.log(错误);});
espSmartconfig.stopConfig(function(res){console.log(res);},function(error){console.log(error);});
答案 1 :(得分:0)
正如你们中的一些人建议的那样,我尝试构建该应用程序并在手机上运行它。像魅力一样工作:
declare var espSmartConfig: any;
所以这里的问题只是我用来测试应用程序的工具。
谢谢大家的投入!