일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- rails
- 日本語
- Flutter
- java
- springboot
- CSS
- C로 시작하는 컴퓨터 프로그래밍4판
- 반다이몰
- 일본어
- vscode
- html
- 건담
- jsp
- 디지몬
- Web
- Python
- 연습문제
- 비즈니스일본어
- nico
- 건담베이스
- 一日一つメソッド
- ruby
- 자바
- メソッド
- Spring
- 인프런
- DART
- 単語
- rails7
- Today
- Total
목록ミニQ&Aサイト (7)
AR삽질러
初めてのRuby on Rails ミニQ&Aサイト開発 - 回答機能Controller, Action(7) routes.rb Rails.application.routes.draw do root "questions#index" resources :questions resources :questions do resources :answers end end root "questions#index" - ルートURL '/' に接続して時 QuestionsControllerのindexアクションを呼び出す。 resources :questions - RESTfulラウトを自動に生成する。 resources :questions do resources :answers - questions/:question_id/answers 形態の重..
初めてのRuby on Rails ミニQ&Aサイト開発 - 改善、回答機能(6) - 質問一覧パージに、新規質問作成画面へのリンクを設定 - 質問詳細画面から、一覧ページへ戻るリンクを設定 - rootのルーチィングを設定 1. 改善 routes.rb Rails.application.routes.draw do root "questions#index" resources :questions end root "questions#index" - アプリケーションのルートURL ( '/' )に接近した時、QuestionsControllerのindexアクションを呼び出す。 resources :questions - questionsリソーずのRESTfulラウトを自動に生成し、index, show, new, create, edit, update, d..
初めての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 on Rails ミニQ&Aサイト開発 - edit, update更新(4) routes.rb Rails.application.routes.draw do resources :questions end - resource :questionsは質問し対するRESTfulラウトを自動に生成し、index, show, new, edit, update, create, destroy アクションのルートを含む。 index.html.erb Questions ID Title Name Content - index Viewで全ての ( @questions )を表紙する。 - 各質問に対してshowとeditリンクを提供する。edit_question_path(question)は該当する質問の修正Formに移動するリンクを生成する。 ques..
初めてのRuby on Rails ミニQ&Aサイト開発 - indexAction(3) 1. indexアクションでユーザーの一覧を表紙する questions_controller class QuestionsController < ApplicationController # 質問一覧表紙 def index @questions = Question.all # p @questions end end - indexアクションに 's'がつく理由は、Ruby on Railsで広く使われる慣例(convention)のためです。 RailsはMVC(Model-View-Controller)パターンに従い、各コンポーネントの名前と使用方法がこの慣例によって決まります。 - 's'が複種系を表して、 'Question'オブジェクトが含まれていることを意味する。 @q..
初めてのRuby on Rails ミニQ&Aサイト開発 - 環境構築- create(2) questions_controller.rb class QuestionsController < ApplicationController def index end def show end def new @questions = Question.new end def create # p params p question_params end def edit end def update end def destroy end private def question_params params.require(:question).permit(:title, :name, :content) end end p params, p question_params - ..
初めてのRuby on Rails ミニQ&Aサイト開発 (0) ミニQ&Aのサビすを制作を通じて - CRUDアプリケーション開発の基礎を学習 - アプリ開発の流れを体験 CRUDとは? - Create. == 作成 - Read == 表紙 - Update == 更新 - Delete == 削除 Q&AアプリのMVPを作る - MVP(Minimum Viable Product ) - 実用最小限の製品 https://github.com/designAR/rails_board GitHub - designAR/rails_board Contribute to designAR/rails_board development by creating an account on GitHub. github.com