跳至内容 跳至搜索
方法
D
G
O
P

实例公共方法

delete(*args, &block)

定义仅识别 HTTP DELETE 的路由。有关支持的参数,请参阅 match

delete 'broccoli', to: 'food#broccoli'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 730
def delete(*args, &block)
  map_method(:delete, args, &block)
end

get(*args, &block)

定义仅识别 HTTP GET 的路由。有关支持的参数,请参阅 match

get 'bacon', to: 'food#bacon'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 698
def get(*args, &block)
  map_method(:get, args, &block)
end

options(*args, &block)

定义仅识别 HTTP OPTIONS 的路由。有关支持的参数,请参阅 match

options 'carrots', to: 'food#carrots'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 738
def options(*args, &block)
  map_method(:options, args, &block)
end

patch(*args, &block)

定义仅识别 HTTP PATCH 的路由。有关支持的参数,请参阅 match

patch 'bacon', to: 'food#bacon'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 714
def patch(*args, &block)
  map_method(:patch, args, &block)
end

post(*args, &block)

定义仅识别 HTTP POST 的路由。有关支持的参数,请参阅 match

post 'bacon', to: 'food#bacon'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 706
def post(*args, &block)
  map_method(:post, args, &block)
end

put(*args, &block)

定义仅识别 HTTP PUT 的路由。有关支持的参数,请参阅 match

put 'bacon', to: 'food#bacon'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 722
def put(*args, &block)
  map_method(:put, args, &block)
end