同问
眼睛一直盯着算吗?擦拭屏幕算吗? 触摸移动,点击,输入,滚屏… 大致就这些吧,所有事件都触发呗
规模可扩展性?
👍👍👍
顶🔝
#42 楼 @huacnlee 我的问题解决了,参考https://github.com/rails/rails/tree/v5.0.0.beta3/actioncablerequest,应该是 origins 的问题
试试在 config/environments/production.rb 里修改配置:
# Action Cable endpoint configuration
config.action_cable.url = '/cable'
config.action_cable.allowed_request_origins = [ 'http://ruby-china.org' ]
@huacnlee,打开浏览器端 firebug, 发现会定时出现 warning: WebSocket connection to 'wss://ruby-china.org/cable' failed: WebSocket is closed before the connection is established. 这是为什么呢?我根据 tutorial 里面的例子做了一个 server,也发现有类似的问题。
“用 Puma 代替 Unicorn 了,原因是 ActionCable 需要多线程的 Rails App Server”,这个理由似乎不成立了
愿逝者安息
github 有开源的项目:weixin_authorize