Android ブラウザーでファイルにアクセスするときに NowJS チャットを使用できますが、phonegap 内で同じコードを実行すると、メッセージが送受信されません。
phonegap/cordova で nowJS またはソケットを正常に使用できた人はいますか?
コードは Web ブラウザ、FF、Chrome、Android ネイティブ ブラウザで動作しますが、phonegap では動作しません
$(document).ready(function(){
now.receiveMessage = function(id, name, message, timestamp){
$("#messages").append("<br>" + id + ' ' + name + ": " + message + ' ' + timestamp);
};
// Send message to people in the same group
$("#send-button").click(function(){
now.distributeMessage(room, $("#text-input").val());
$("#text-input").val("");
});
now.name = 'Guest '+Math.floor(Math.random() * 1000 % 5 + 2);
// on establishing 'now' connection, set server room and allow message sending
now.ready(function(){
room = location.hash.replace('#', '');
if (!room) {
alert("Please specify a room");
throw "";
}
now.changeRoom(room);
// Connection established and room set; allow user to start sending messages
$("#send-button").removeAttr('disabled');
});
});