3

我想将自定义 http VERB 添加到 rails 4 这是我的 routes.rb

ring "/session/" => "calls#ringing"

我也把这段代码放到初始化器中

%w(ring busy).each do |method|                                                                                                                                                                                                              
  ActionDispatch::Request::HTTP_METHODS << method.upcase                                                                                                                                                                                    
  ActionDispatch::Request::HTTP_METHOD_LOOKUP[method.upcase] = method.to_sym                                                                                                                                                                
end

当我尝试启动应用程序时出现此错误。

undefined method `ring' for #<ActionDispatch::Routing::Mapper:0x000000035c4150>

我真的需要使用这个自定义动词“RING”。

4

1 回答 1

4

我通过将此字符串添加到路由来解决问题

match '/session/:sessionid', :to => 'calls#initiate', :via => :ring 
于 2014-03-16T10:52:39.463 回答