これが私の問題です:
キャンプは疑問符で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