我们是否有任何插件可用于wi-fi直接在phonegap中?
我想使用wi-fi共享数据,我们可以使用wi-fi direct
在原生android中实现这一点,但是当我检查phonegap时,我没有找到任何合适的文档。
我有没有办法在phonegap中做到这一点?
任何解决方案或文档都会非常有用。
谢谢:)
答案 0 :(得分:1)
我是科尔多瓦的新手,但也许你可以使用cordova.exec
函数:
cordova.exec(function(winParam) {}, function(error) {}, "service",
"action", ["firstArgument", "secondArgument", 42,
false]);
http://docs.phonegap.com/en/2.7.0/guide_plugin-development_index.md.html
如果它只适用于Android,你可以使用这些功能:
http://developer.android.com/guide/topics/connectivity/wifip2p.html
如果你得到任何东西,请告诉我!