0

这是我的问题:

Camping在问号处拆分网址。

所以如果我们有这样的代码:

Camping.goes :CodeLine
module CodeLine::Controllers
 class Index
  def get
   render :index
  end
 end
class TextEntered < R '/(.*)'
  def get(textStringEntered)
   "#{textStringEntered}"
  end
 end
end
module CodeLine::Views
 def index
  html do
   head do
    title "Uh Oh"
   end
   body do
    text "Looks like you got to the index"
    br
    br
    form :name => "input" do
     input :type => "text", :name => "text"
     input :type => "submit", :value => "Submit"
    end
   end
  end
 end
end

运行camping path/to/file
进入localhost:3301浏览器并在文本字段中输入一些文本并点击提交后,您应该会看到斜杠后面的所有内容,但它会在问号处拆分 url,因为它认为斜杠后面没有任何内容,所以需要你给索引。

问题:是否可以设置input为不使用问号,或者我可以让露营不在问号处拆分?

附录 A

1. Google Chrome
2. Firefox
3. Safari中测试

4

1 回答 1

1

路由只匹配 URL 的路径

https://example.com/hello/world?a=this&b=hello&c=world#nice
^       ^          ^            ^                      ^
Schema  Host       Path         Query parameters       Fragment

在露营中,您可以通过以下方式访问查询参数@input

@input.a # => "this"
@input.b # => "hello"
@input.c # => "world"

查询参数更像是您可以传递给控制器​​的“选项”。例如,您不希望有一个单独的控制器来处理“按名称排序”和“按日期排序”,因此您可以使用查询参数:

class Search
  def get
    query = @input.q || "*"
    page = (@input.page || 1).to_i
    sort = @input.sort || "name"
    @results = fetch_results_from_database_or_something(query, page, sort)
    render :search
  end
end

这样,所有这些工作:

/search?query=hello  # Page 1, sort by name
/search?page=5       # Page 5, sort by name, search for everything
/search?query=cars&page=4&sort=date
于 2013-02-17T08:36:55.160 回答