我使用websocket在導軌中創建Web應用程序。我創建的routes.rbWebsocket在導軌中不工作,因爲路由
get '/:username' => 'users#profile', as:"profile"
在此之後下面添加,我的Gemfile
gem 'websocket-rails'
波紋管添加,然後我在應用程序下添加。 js
var dispatcher = new WebSocketRails('localhost:3000/websocket');
channel = dispatcher.subscribe('articles');
channel.bind('new', function(article) {
console.log('a new article about '+article.id+' arrived!');
})
問題是
本地主機:3000 /網頁套接字=====>運行profile_path(得到 '/:用戶名'=> '用戶#輪廓',如:「profile」)
如何解決我的websocket問題而不刪除{ get '/:username' => 'users#profile', as:"profile" }
..?
我是使用web套接字開發rails的新用戶。
謝謝...這是在開發模式..... –