我在Rails应用程序中使用Faye websockets,就像Railcasts#260一样。 一切都很好,但现在我得到的错误就像
ReferenceError:未定义Faye
这里
$(function() {
var faye = new Faye.Client('http://localhost:9292/faye');
faye.subscribe("/games/messages/new", function(data) {
eval(data)
});
});
我开始了我的faye:rackup faye.ru -s thin -E production
faye.ru
require 'faye'
Faye::WebSocket.load_adapter('thin')
faye_server = Faye::RackAdapter.new(:mount => '/faye', :timeout => 45)
run faye_server
我不知道发生了什么,我唯一改变的是安装rails-unicorn gem并默认启动它。
更新: http://localhost:9292/说:
如果我添加/ faye -
如果我添加/faye.js -
更新:对于现在它只是工作,不知道为什么,但确实如此。谢谢大家。
答案 0 :(得分:0)
我建议您在生产环境ip
初始化中使用实际的localhost
代替Faye.Client
(当然使用request.host
帮助程序):
var faye = new Faye.Client("http://#{ request.host }:9292/faye");