Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
気にしない。params[:fieldname] を使用できることを知りませんでした
あなたの質問は有益ではありません。もう少し情報を教えていただけますか。あなたがしたいことについて?
とにかくあなたはこれを行うことができます:
<% form_tag url_for(:action => 'method_name', :param_name => "abc" ) ... <% end %>
コントローラー内:
def method_name p = params[:param_name] end