我有一个使用rails + devise + actioncable的基本设置。
我基本上想直接和私下发送通知给当前登录的用户。我的代码如下:
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
end
private
def find_verified_user
if verified_user = env['warden'].user
verified_user
else
reject_unauthorized_connection
end
end
end
end
class NotificationsChannel < ApplicationCable::Channel
def subscribed
stream_from current_user
end
end
一切正常。客户端已连接,我可以在日志中看到他已正确登录。此外,我可以在Rails控制台中看到以下输入:
[ActionCable] [admin@example.com] Registered connection (Z2lkOi8vcHJpc21vL1VzZXIvMQ)
[ActionCable] [admin@example.com] NotificationsChannel is transmitting the subscription confirmation
[ActionCable] [admin@example.com] NotificationsChannel is streaming from #<User:0x00007f87f4180b68>
但是,当尝试使用下面的代码向该用户发送通知时,似乎该事件未到达用户(不存在错误!):
2.5.1 :010 > NotificationsChannel.broadcast_to(User.first, test: 'foo')
[ActionCable] Broadcasting to notifications:Z2lkOi8vcHJpc21vL1VzZXIvMQ: {:test=>"pass"}
=> nil
我的javascript使用者什么也不记录:
let cable = ActionCable.createConsumer(`ws://mydomain.com/cable`)
let actions = {
received(payload) {
console.log(payload) // <== this line logs nothing!
}
}
cable.subscriptions.create('NotificationsChannel', actions)
我在这里做错了什么吗?
答案 0 :(得分:0)
可能是因为您使用的是stream_from
而不是stream_for
。在引用对象(模型)而不是通道中的字符串时,应使用stream_for
。尝试在notifications_channel.rb
中执行此操作:
class NotificationsChannel < ApplicationCable::Channel
def subscribed
stream_for current_user
end
end
这里是对文档的引用:https://api.rubyonrails.org/classes/ActionCable/Channel/Streams.html#method-i-stream_for