我正在创建一个使用chrome.socket.udp的Chrome扩展程序。我正在关注this tutorial,但我没有看到任何数据已发送。
这是我的代码..
//var socketId;
var address = "127.0.0.1";
var port = 6454;
function str2ab(str) {
var buf = new ArrayBuffer(str.length*2);
var bufView = new Uint16Array(buf);
for (var i=0, strLen=str.length; i<strLen; i++) {
bufView[i] = str.charCodeAt(i);
}
return bufView;
}
function sendPackets(){
console.log("sending packets");
chrome.sockets.udp.create({}, function(socketInfo) {
// The socket is created, now we can send some data
var socketId = socketInfo.socketId;
console.log(socketId);
chrome.sockets.udp.send(socketId, str2ab("hello"),
'127.0.0.1', 1337, function(sendInfo) {
console.log("packets sent");
console.log("sent " + sendInfo.bytesSent);
});
});
}
document.getElementById('send').addEventListener('click', sendPackets);
这是我在控制台中得到的输出......
sending packets background.js:16
165 background.js:20
并且没有发送数据的迹象.... plz help ...