form_remote_tag 와 buttonto_remote

1148 단어 htmlAjaxRails
예전 에는 항상 문제 가 있 었 습 니 다. AJAX, 부분 업데이트 가 필요 할 때 linkto_remote 가 너무 못 생 겨 서 button 을 쓰 고 싶 어서 formremote_tag, 하지만 항상 형식 을 기억 하지 못 하고 몇 번 디 버 깅 해 야 합 니 다.그럼 백업 남 겨 주세요.
Rails 2.2 이후 buttonto_remote


 <% form_remote_tag :url => {
                    :controller => '/posts', 
                    :update => 'update_div'
                    :action => 'view'},
                    :html => {:action => {
                    :controller => '/posts', 
                    :action => 'view', 
                    :id => @id}} do %>    

<%= submit_tag 'View' -%>  

<% end %>



<form action="/posts/view/1" method="post" onsubmit="new Ajax.Request('/posts/view/1', {asynchronous:true, evalScripts:true, parameters:Form.serialize(this)}); return false;">

<input type="submit" value="View" />

</form>


좋은 웹페이지 즐겨찾기