ruby Sinatra路线版本.rb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby Sinatra路线版本.rb相关的知识,希望对你有一定的参考价值。

# This module allows you to prepend a version prefix to your Sinatra URLs
# Example:
#
# require 'rubygems'
# require 'sinatra/base'
#
# class App < Sinatra::Base
#   register Versioned
#
#   set :version, 'v1'
#   
#   # => GET /v1/hello
#   get '/hello' do
#     'This is a GET for version' + options.version.inspect
#   end
#   
#   # => POST /v1/hello
#   post '/hello' do
#     'This is a POST for version ' + options.version.inspect
#   end
#   
# end


module Versioned
  
  def post(*args, &block)
    super *versioned_route(args), &block
  end
  
  def get(*args, &block)
    super *versioned_route(args), &block
  end
  
  def put(*args, &block)
    super *versioned_route(args), &block
  end
  
  def delete(*args, &block)
    super *versioned_route(args), &block
  end

  protected
  
  def versioned_route(args)
    args[0] = "/#{version}#{args[0]}"
    args
  end
end

以上是关于ruby Sinatra路线版本.rb的主要内容,如果未能解决你的问题,请参考以下文章

如何在命令行上使用相同的命令,通过Ruby shell命令运行app

ruby Пример路线.rb

在凯马尔使用params

强制 .rb 文件在特定 ruby​​ 版本下运行

在 Ruby 中需要文件

如何在 Sinatra 中获取当前路径/路线?