2010-01-08 48 views
5

有人能告訴我爲什麼這是執行POST方法而不是我在ajax請求中指定的PUT方法嗎?form_remote_tag不會執行:method =>:put

<% form_remote_tag(
    :url => contact_url(detail), 
    :method => :put, 
    :complete => "Element.toggle($('#{form_id}))", 
    :success => visual_effect(:shake, "contact-#{detail.id}"), 
    :update => "contact-#{detail.id}", 
    :html => {:id => form_id, :style => "display:none"}) do %> 

生成的輸出:

<form action="/contacts/1" id="tag-form-for-1" method="post" onsubmit="new Ajax.Updater('contact-1', '/contacts/1', {asynchronous:true, evalScripts:true, method:'put', onComplete:function(request){Element.toggle($('tag-form-for-1))}, onSuccess:function(request){new Effect.Shake(&quot;contact-1&quot;,{});}, parameters:Form.serialize(this)}); return false;" style="display:none"> 


<div style="margin:0;padding:0;display:inline"> 
<input name="authenticity_token" type="hidden" value="7807qAkHN3c1yyZlLoy9Z5pUByviR5az9vtuHHBbVv4=" /> 
</div> 

<input id="tag_list" name="tag_list" size="40" type="text" value="Home Pittsburgh Ginger" /> 
<input id="form_id" name="form_id" type="hidden" value="tag-form-for-1" /> 

</form> 

回答

4

多少打打鬧鬧之後圍繞我想通了這一點。看起來我需要將:method =>:put調用放在:html哈希中。不知道爲什麼。如果有人能回答,這將有所幫助。

+0

你剛剛幫我一把。對不起,沒有人在你需要時幫助你:/ – Abel 2011-03-02 23:47:28

1

如果使用「put」,「delete」或其他謂詞,則會添加名爲_method的隱藏輸入以模擬動詞over post。

相關問題