0

同等のものを持つ方法はありますか

<%= link_to "Continue", "/profile" %>

しかし、button_to?私が理解していることから、レールルートを使用する必要があります。new_user_path など。

こんなことを考えていた

<%= button_to "Continue", "/profile", method: :get %>

それが可能かどうか教えてください。そうでない場合は、おそらく私の最良の代替手段です...ありがとう

4

1 に答える 1

0

私が理解しているように、文字列だけを使用できます。だから<%= button_to "Continue", "/profile", { :method => :get } %>提供します

<form action="/profile" class="button_to" method="get">
  <div>
    <input type="submit" value="Continue" />
  </div>
</form>

それはあなたが望むものですか?

于 2012-08-02T05:57:38.007 に答える