我已使用CLI添加了Bluetooth插件,并将以下代码添加至index.html。但这是行不通的。我是Phonegap的新手。请帮助包含此插件。我已经使用了tanelign-bluetooth插件。

<script>
        window.bluetooth.pair(
        function() {
           alert('Pairing Successful');
        },
        function(err) {
           alert('There was an error Pairing to a device'+ JSON.stringify(err));
        }, deviceaddress);

最佳答案

您需要首先在设备就绪事件上添加此代码:

document.addEventListener("deviceready", yourCallbackFunction, false);

function yourCallbackFunction(){
    window.bluetooth = cordova.require("cordova/plugin/bluetooth");
}


并将此js添加到您的页面中:
https://github.com/tanelih/phonegap-bluetooth-plugin/tree/master/www

像这样:<script src="bluetooth.js"></script>

文档:https://github.com/tanelih/phonegap-bluetooth-plugin

关于android - 如何添加phonegap蓝牙插件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33327667/

10-10 10:47