Rails 보전 의 제4 3 식: Ajax with RJS

RJS 애플 리 케 이 션 을 보 겠 습 니 다.
우 리 는 우선 application. rhtml 을 수정 하 는 등 *. js 파일 을 추가 해 야 합 니 다.

<%= javascript_include_tag :defaults %>

그리고 Review 의 create 방법 에 js 형식의 응답 을 추가 합 니 다.

def create
  @review = Review.create!(params[:review])
  flash[:notice] = "Thank you for reviewing this product"
  respond_to do |format|
    format.html { redirect_to product_path(@review.product_id) }
    format.js
  end
end

저 희 는 Review 를 만 드 는 페이지 에서 form 을 사용 합 니 다.remote_for:

<!-- products/show.rhtml -->
<% form_remote_for :review, :url => reviews_path, :html => { :id => 'review_form' } do |f| %>
...
<% end %>

마지막 으로 create. rjs 파일 을 썼 습 니 다.

page.insert_html :bottom, :reviews, :partial => 'review', : object => @review
page.replace_html :reviews_count, pluralize(@review.product,reviews.size, 'Review')
page[:review_form].reset
page.replace_html :notice, flash[:notice]
flash.discard

별로 새 롭 지 않 습 니 다. RJS 를 배 워 서 < < RJS Templates for Rails > > 를 보면 됩 니 다.

좋은 웹페이지 즐겨찾기