0
我有使用打開彈出:彈出與編輯操作在軌道不工作3
<%= link_to user.username, "https://stackoverflow.com/users/"+user.id.to_s+"/edit", :method => :post, :target=> "_blank" %>
edit.html.erb文件是:
<div id="dvUserMgmt" class="popup">
<%= form_for(:user, :url => { :controller => 'users', :action => 'update'}) do |f| %>
<table>
<tr>
<td class="labelfield">*Name</td>
<td class="textfield">
<input type="text" name="tb_realname" value=<%= @realname %> />
</td>
</tr>
<tr>
<td class="buttons" colspan="3">
<%= submit_tag 'Update', :url => { :controller => 'users', :action => 'update'}, :class => 'popup_closebox' %>
<%= tag :input, :type => 'button', :value => 'Cancel', :class => 'popup_closebox' %>
</td>
</tr>
</table>
<% end %>
</div>
在點擊更新按鈕時,行動更新沒有得到執行。 任何人都可以指出問題在哪裏?
謝謝你,這很有幫助 – sudhir