Ruby on Rails——一個完整的例子(八)

本節是關於這個blog項目的article相關的例子的最後一節,讓我們一起來學習一下如何刪除一個article。 要實現刪除的動作,我們需要在controller中添加destroy方法,在destroy方法中,我們需要知道要刪除的對象,所以至少需要把article的id作爲參數傳遞過來。 def destroy   @article = Article.find(params[:id])   @
相關文章
相關標籤/搜索