方法
实例公共方法
broadcast_to(model, message) 链接
将一个哈希广播到此频道中model
的唯一广播。
源代码: 显示 | 在 GitHub 上查看
# File actioncable/lib/action_cable/channel/broadcasting.rb, line 14 def broadcast_to(model, message) ActionCable.server.broadcast(broadcasting_for(model), message) end
broadcasting_for(model) 链接
返回此频道中model
的唯一广播标识符。
CommentsChannel.broadcasting_for("all") # => "comments:all"
您可以将任何对象作为目标(例如,Active Record 模型),它将在后台被序列化为字符串。
源代码: 显示 | 在 GitHub 上查看
# File actioncable/lib/action_cable/channel/broadcasting.rb, line 24 def broadcasting_for(model) serialize_broadcasting([ channel_name, model ]) end