일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- springboot
- 디지몬
- Python
- jsp
- 일본어
- 자바
- 건담
- vscode
- 単語
- C로 시작하는 컴퓨터 프로그래밍4판
- javascript
- メソッド
- 건담베이스
- ruby
- 반다이몰
- 비즈니스일본어
- Web
- Flutter
- nico
- 日本語
- java
- Spring
- 연습문제
- html
- 인프런
- rails7
- DART
- 一日一つメソッド
- rails
- CSS
Archives
- Today
- Total
목록Destroy (1)
AR삽질러
初めてのRuby on Rails ミニQ&Aサイト開発 - delete, destroy 削除(5)
初めてのRuby on Rails ミニQ&Aサイト開発 - delete, destroy 削除(5) questions_controller.rb class QuestionsController < ApplicationController # 質問の削除 def destroy @question = Question.find(params[:id]) @question.destroy redirect_to questions_path end end - destroyアクションはURLから受けた 'params[:id]' を使って削除する質問す探す。 - @question.destroyを呼び出して質問をDataBaseから削除する。 - 削除して後、ユーザーを質問List Pageにリダイレクトする( redirect_to questions_path ..
Ruby/RubyOnRails-日本語
2024. 1. 4. 16:06