Кабель действий в Rails 5.2, выбрасывающий NoMethodError - PullRequest
0 голосов
/ 11 сентября 2018

Я настраиваю Action cable в моем приложении Rails 5.2 для комментариев на странице списков.jQuery - не моя сильная сторона, но я уверен, что я правильно понял эту цель.Я получаю эту ошибку при загрузке страницы.Я отключил Turbolinks, так что вызов сценария jQuery coffee, я уверен, правильный.Я дважды проверил расположение файлов и опечатки и не могу понять, почему метод 'channel' не вызывается.Вот файлы.

app / assets / javascripts / channel / lists.coffee

jQuery ->
comments = $('#comments')
if comments.length > 0 
    App.global_chat = App.cable.subscriptions.create {
        channel: "ListingsChannel"
        listing_id: comments.data("listing-id")
    },
    connected: ->
    disconnected: ->
    received: (data) ->
        comments.append data['comment']
    send_comment: (comment, listing_id) ->
        @perform 'send_comment', comment: comment, listing_id: listing_id
$('#new_comment').submit (e) ->
    $this = $(this)
    textarea = $this.find('#comment_content')
    if $.trim(textarea.val()).length > 1
        App.global_chat.send_comment textarea.val(),
        comments.data('listing-id')
        textarea.val('')
    e.preventDefault()
    return false

app / channel / lists_channel.rb

class ListingsChannel < ApplicationCable::channel
    def subscribed
        # point to the stream
        stream_from "listings_#{params['listing_id']}_channel"
    end

    def unsubscribed
    end

    # uses the method in the coffee script to get the data required to attach to the comment
    def send_comment(data)
        current_user.comments.create!(content: data['comment'], listing_id: data['listing_id'])
    end
end

Сообщение об ошибке:

[ActionCable] [bradley@email.com] [2] Registered connection (Z2lkOi8vZ2xvYmFsLWFieC9Vc2VyLzI)
[ActionCable] [bradley@email.com] [2] Could not execute command from ({"command"=>"subscribe", "identifier"=>"{\"channel\":\"ListingsChannel\",\"listing_id\":6}"}) [NoMethodError - undefined method `channel' for ApplicationCable:Module]: /Users/bradley/Development/app_name/app/channels/listings_channel.rb:1:in

app / channel / application_cable / connection.rb

module ApplicationCable
      class Connection < ActionCable::Connection::Base
            identified_by :current_user

            def connect
                self.current_user = find_verified_user
                logger.add_tags 'ActionCable', current_user.email
                logger.add_tags 'ActionCable', current_user.id
            end

            protected

            def find_verified_user
                # recreating devise functionality for current_user methods
                if verified_user = env['warden'].user
                    verified_user
                end
            end
      end
 end

app / controllers / comments_controller.rb

class CommentsController < ApplicationController
def create
    # grabs current user and builds the comment based on relationships set up
    @comment = current_user.comments.build(comment_params)
end

private

def comment_params
    params.require(:comment).permit(:content)
end

end

app / jobs / comment_broadcast_job.rb

class CommentBroadcastJob < ApplicationJob
#create queue/list served in order
queue_as :default

def perform(comment)
    # start broadcast on actioncable / create a channell/ render comment
    ActionCable.server.broadcast "listings_#{comment.listing.id}_channel", comment: render_comment(comment)
end

private

def render_comment(comment)
    # call the comments controller and render the partial in the views, pass in the variable to render
    CommentsController.render partial: 'comments/comment', locals: { comment: comment }
end

end

app / assets / javascripts / application.js

//= require jquery
//= require rails-ujs
//= require popper
//= require bootstrap-sprockets
//= require snackbar
//= require activestorage
//= require cable
//= require_tree .

Форма, проверяемая на предмет наличия ошибочного # вызова или чего-либо еще,enter image description here

Не уверен, что еще я могу добавить сюда.Трудно найти что-либо связанное с этой ошибкой, но ясно, что по пути ничего не найдено.

любая помощь будет более ценной.Спасибо всем.

1 Ответ

0 голосов
/ 12 сентября 2018

Примечание: Мне еще предстоит использовать ActionCable, поэтому возьмите мой ответ с крошкой соли.

В вашем app/channels/listings_channel.rb файле ApplicationCable::channel следуетиметь заглавную букву "C" на канале.

Текущий: class ListingsChannel < ApplicationCable::channel

Требуется: class ListingsChannel < ApplicationCable::Channel

ЭтоПохоже на Ruby, в вашем модуле ApplicationCable есть функция с именем channel, поэтому вы получаете сообщение об ошибке.

Кроме того, поскольку вы не опубликовали код, убедитесь, что выиметь класс Channel в пространстве имен ApplicationCable.Исходя из этого репозитория , вы также должны иметь этот файл в папке вашего приложения:

# /channels/application_cable/channel.rb
module ApplicationCable
  class Channel < ActionCable::Channel::Base
  end
end
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...