標籤:des blog http io ar os sp on 檔案
首先需要在index頁加個刪除連結,並提供一個刪除的確認,使用者確認刪除時,直接刪除資料。
修改views
修改 app/views/posts/index.html.erb,如下:
<h1>Our blogs</h1><% @posts.each do |post| %> <h2><%=link_to post.title,post%></h2> <%=post.context%><br/><hr/> <p> <%= link_to "Update",edit_post_path(post)%> <%= link_to "Delete",post, :confirm =>"Are you sure", :method=>:delete %> </p><% end %><p><%= link_to "Add a post", new_post_path %></p>
即添加了
<%= link_to "Delete",post, :confirm =>"Are you sure", :method=>:delete )
post是要刪除的實力變數, :confirm ,確認是否刪除, :method http 請求的方法,這裡是delete請求。 詳情見 《[ruby on rails] 跟我學之路由映射》。
修改action
對於delete請求的action為destroy,修改app/controllers/posts_controller.rb檔案的destroy方法,如下:
def destroy @post = Post.find(params[:id]) @post.destroy redirect_to posts_path, :notice=>"Your post has been deleted" end
運行服務
運行服務時,發現確認框並沒有出來(此問題後續會有專題),其他正常。
[ruby on rails] 跟我學之刪除資料