1

Firefox の Firebug のクライアント側でエラーが表示されます

The connection to ws://localhost:9292/faye was interrupted while the page was loading

ここに私のapplication.jsファイルがあります:

$(function() {
    var faye = new Faye.Client('http://localhost:9292/faye');
    alert("connected.");
    faye.subscribe("/game/poker", function(data) {
        eval(data);
    });
});

そして、ここに私のerb.jsファイルがあります:

<%= broadcast "/game/poker" do %>
<% @allowed && @user_hand && @game.table.size == 5 && @game.hasler == @game.user.name ? cc = @game.combo_cards(@user_hand) : cc = [1, 2, 3, 4, 5] %>
$("#table").empty().append("<div class='player-cards'>" + "<%= escape_javascript render :partial => "table_cards", :locals => {:cards => @game.table, :combo_cards => cc} %>" + "</div");
$("#deck-size").empty().append("<div class='deck-size'>" + <%= escape_javascript "#{@game.deck.size}" %> +"</div>");
$("#<%= @game.user.name %>_action").empty().append("<%= escape_javascript "#{@game.user.actions.last}" %>");
$("#<%= @game.bot.name %>_action").empty().append("<%= escape_javascript "#{@game.bot.actions.last}" %>");

<% unless @allowed && (@game.bot.moved && @game.user.moved) || @pfold == true %>
    $("#deal").hide();
<% end %>
<% if @game.to_call != 0 %>
    $("#check").hide();
    $("#call").show();
<% else %>
    $("#call").hide();
    $("#check").show();
<% end %>
<% unless !@pfold && !@allowed %>
    $("#fold").hide();
    $("#bet").hide();
    $("#small2").hide();
    $("#small4").hide();
    $("#small8").hide();
    $("#all_in").hide();
<% end %>
<% end %>

問題は、ブロードキャスト ブロック内で何も機能しないことです。ブラウザの応答は単に空です。ブロードキャストの方法は railscast と同じです:

def broadcast(channel, &block)
    @action = {:channel => channel, :data => capture(&block)}
    @uri = URI.parse("http://localhost:9292/faye")
    Net::HTTP.post_form(@uri, :action => @action.to_json)
    puts "DEBUG::broadcasting channel"
end

私が間違っていることは何ですか?何でもお力添えください。

4

1 に答える 1

0

あなたのコードに基づいて、私はあなたがWebSocketを使用していないと仮定します。あなたのapplication.jsでこれを試してください、これはうまくいくかもしれません。お知らせ下さい

$(function() {
    var faye = new Faye.Client('http://localhost:9292/faye');
    alert("connected.");
    faye.subscribe("/game/poker", function(data) {
       eval(data);
    });

    faye.disable('websocket');

});
于 2012-07-03T21:29:44.890 に答える