私はここでpusherappを使用しようとしていますが、クロムのコンソールは "接続が確立される前にWebSocketが閉じられています。私のJSは以下の通りですが、何が問題なのかについてのアイデアはありますか?Pusherapp/Websocket not connecting
<script type='text/javascript'>
$(document).ready(function(){
var pusher_key = "<%= Pusher.key %>";
var pusher_channel = "thirsty-<%= Rails.env %>";
var pusher = new Pusher(pusher_key, pusher_channel);
pusher.bind('push_comment', function(content) {
comment_html = '<li><p>' + content + '</p></li>'
$(comment_html).prependTo('#comments');
});
});
</script>
console.logの "pusher_key"と "pusher_channel"プロパティが正しいかどうかを確認します。 – Shakakai
彼らは両方とも正しい値を示しています –