1

我正在尝试将我的表单提交按钮设置为链接而不是按钮。

<%= f.actions do %>
  <%= f.action :submit, :label => "Sign in", :as => :link %>
<% end %>

以上给了我一个“Formtastic::UnsupportedMethodForAction”错误。

我从rdoc.info/github/justinfrench/formtastic#The_Available_Inputs找到了以下示例代码

<%= f.actions do %>
  <%= f.action :submit, :as => :button %>
  <%= f.action :cancel, :as => :link %>
<% end %>

如果我将上面的代码更改为

<%= f.action :submit, :as => :link %>

:as => :link 不支持 :submit 吗?

提前致谢!

4

2 回答 2

3

它会产生<input type="button" value="Sign in">

如果您想要一个响应操作的链接,请使用link_to "Profile", :controller => "profiles", :action => "create", :id => @profile, :method => :post

于 2012-07-23T06:02:15.207 回答
2

您应该使用 CSS 来执行此操作。尝试类似的东西

#submit-button-selector {
  background: none;
  border: none;
  color: blue;
  text-decoration: underline;
  display: inline;
}
于 2012-07-23T09:18:11.990 回答