我想要創建的活動名稱幾個link_to_remote鏈接:如何使用link_to_remote傳遞然後在rails中渲染partial?
<% @campaigns.each do |campaign| %>
<!--link_to_remote(name, options = {}, html_options = nil)-->
<%= link_to_remote(campaign, :update => "campaign_todo",
:url => %>
<% end %>
我要輸出到網頁上更新渲染的部分,貫穿其中與運動相關的值的循環。
API文檔說,這會使部分,但其中的名字我不清楚:局部模板傳遞,在這裏或控制器
感謝。