1
次のエラーの解決策を教えてください。ActionView :: Template :: Error(ローカルホストへのTCP接続を開くことができません:9292(接続が拒否されました - "localhost"ポート9292のためのconnect(2)))
これは次のように 、コードエラーがある....チャットアプリケーションである::
conversations_controller.rb
def create
if Conversation.between(params[:sender_id],params[:recipient_id]).present?
@conversation = Conversation.between(params[:sender_id],params[:recipient_id]).first
else
@conversation = Conversation.create!(conversation_params)
end
render json: { conversation_id: @conversation.id }
end
Create.js.erb
<% publish_to @path do %>
alert(@path);
var id = "<%= @conversation.id %>";
var chatbox = $("#chatbox_" + id + " .chatboxcontent");
var sender_id = "<%= @message.user.id %>";
var reciever_id = $('meta[name=user-id]').attr("content");
chatbox.append("<%= j render(partial: @message) %>");
chatbox.scrollTop(chatbox[0].scrollHeight);
if (sender_id != reciever_id) {
chatBox.chatWith(id);
chatbox.children().last().removeClass("self").addClass("other");
chatbox.scrollTop(chatbox[0].scrollHeight);
chatBox.notify();
}
<% end %>
コンソールに表示されるエラー:
ActionView::Template::Error (Failed to open TCP connection to localhost:9292 (Connection refused - connect(2) for "localhost" port 9292)):
1: <% publish_to @path do %>
2: alert(@path);
3: var id = "<%= @conversation.id %>";
4: var chatbox = $("#chatbox_" + id + " .chatboxcontent");
app/views/messages/create.js.erb:1:in `_app_views_messages_create_js_erb___1855030059461646481_70563200'
この問題を解決してください。
ありがとうございます。
ありがとうございました。 @ウズベクジョン。私たち(フレッシャーやジュニアデベロッパー)は、あなたのような人からの助けが必要です。もう一度ありがとう。 –