[ruby on rails] 跟我學之刪除資料

來源:互聯網
上載者:User

標籤: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] 跟我學之刪除資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.