要使用MySQL和Ruby on Rails開發(fā)一個簡單的在線調查問卷,你需要按照以下步驟進行操作:
安裝MySQL數(shù)據(jù)庫:在你的開發(fā)環(huán)境中安裝并配置MySQL數(shù)據(jù)庫。根據(jù)你的操作系統(tǒng),可以選擇使用官方的MySQL安裝程序或通過包管理器進行安裝。
創(chuàng)建Rails應用程序:在終端中使用以下命令創(chuàng)建一個新的Rails應用程序:
$ rails new survey_app
配置數(shù)據(jù)庫連接:在應用程序的根目錄下打開config/database.yml
文件,并確保數(shù)據(jù)庫配置正確。將username
和password
字段設置為你在MySQL中的憑據(jù)。
生成問卷模型和數(shù)據(jù)庫表:在終端中運行以下命令生成一個問卷模型和相應的數(shù)據(jù)庫表:
$ rails generate model Survey title:string
$ rails generate model Question content:string survey:references
$ rails generate model Option content:string question:references
$ rails db:migrate
這將生成名為Survey
、Question
和Option
的模型,并創(chuàng)建與之相關的數(shù)據(jù)庫表。
app/models
目錄下),并在相應模型中添加關聯(lián)關系。例如,在app/models/survey.rb
文件中添加以下代碼:class Survey < ApplicationRecord
has_many :questions
end
在app/models/question.rb
中添加以下代碼:
class Question < ApplicationRecord
belongs_to :survey
has_many :options
end
在app/models/option.rb
中添加以下代碼:
class Option < ApplicationRecord
belongs_to :question
end
$ rails generate controller Surveys
$ rails generate controller Questions
config/routes.rb
文件,添加以下代碼以設置問卷和問題的路由:Rails.application.routes.draw do
resources :surveys do
resources :questions
end
end
app/controllers
目錄下),根據(jù)需要實現(xiàn)相應的動作。例如,在app/controllers/surveys_controller.rb
中添加以下代碼:class SurveysController < ApplicationController
def index
@surveys = Survey.all
end
def show
@survey = Survey.find(params[:id])
end
def new
@survey = Survey.new
end
def create
@survey = Survey.new(survey_params)
if @survey.save
redirect_to @survey, notice: 'Survey was successfully created.'
else
render :new
end
end
private
def survey_params
params.require(:survey).permit(:title)
end
end
在app/controllers/questions_controller.rb
中添加類似的代碼以處理問題相關的操作。
創(chuàng)建視圖:在app/views
目錄下創(chuàng)建相應的視圖文件。例如,在app/views/surveys
目錄下創(chuàng)建index.html.erb
、show.html.erb
和new.html.erb
文件。
運行應用程序:在終端中運行以下命令啟動Rails服務器:
$ rails server
然后在瀏覽器中訪問http://localhost:3000/surveys
即可查看問卷列表頁。
這只是一個簡單的實現(xiàn)示例,你可以根據(jù)自己的需求和項目要求進行擴展和改進。