How to reload a div using render(:update) and replace_html?

后端 未结 3 1966
臣服心动
臣服心动 2021-01-06 22:43

How to reload only the div id on a page? I just need to reload a certain div.

in my controller I have

def mycontrolleraction
 ...

 render(:update) d         


        
3条回答
  •  情书的邮戳
    2021-01-06 23:31

    ref ajax-on-rails tutorial.To replace the html content of some div use replace_html

    render :update do |page|
      replace_html 'div', 'new refresh data'
    end
    

提交回复
热议问题