来自doc的示例代码:
# app/channels/web_notifications_channel.rb
class WebNotificationsChannel < ApplicationCable::Channel
def subscribed
stream_for current_user
end
end
我在current_user
中有方法ApplicationController
。错误未定义的方法current_user
id subscribed
方法当然因为WebNotificationsChannel
不是从ApplicationController
派生的。什么医生的意思?或者我错过了什么?