現在我有2種表單提交評論。是否可以創建一個與表單功能相同的鏈接?
形態A型
<%=form_for(([@community, @comment]), :remote => true, :class => 'form') do |f| %>
<%= f.text_field :body, :id => "body", :class => "chat" %>
<button type="submit" class="btn">submit</button>
<% end %>
形態B型
<%=form_for(([@user, @comment]), :remote => true, :class => 'form') do |f| %>
<%= f.text_field :body, :id => "body", :class => "chat" %>
<button type="submit" class="btn">submit</button>
<% end %>
現在,我想有的link_to按鈕功能相同的形式做,如果用戶點擊它。
當用戶點擊鏈接時,@comment
會自動填充,就像下面一樣。
從形態A型
@comment = "this is for community"
從形態B型
@comment = "this is for user"
我怎麼能這樣做?據我瞭解我的情況。
表格是put
類型,然後link_to是get
類型,所以不可能重新使用表單的事務。
你可以使用'oncli鏈接的ck事件並調用表單提交? – abiessu
@abiessu感謝您的評論。通常使用onclick事件嗎? – MKK