0

これが私の問題です:

キャンプは疑問符でURLを分割しています。

したがって、次のようなコードがある場合:

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.GoogleChrome
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

Campingでは、次の方法でクエリパラメータにアクセスできます@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 に答える