如何利用MySQL和Python開發一個簡單的線上問卷

WBOY
發布: 2023-09-20 11:18:35
原創
838 人瀏覽過

如何利用MySQL和Python開發一個簡單的線上問卷

如何利用MySQL和Python開發一個簡單的線上問卷

簡介
線上問卷在現代社會中被廣泛使用,用於收集使用者的觀點、回饋和意見。本文將介紹如何使用MySQL和Python開發一個簡單的線上問卷系統,並提供相關的程式碼範例。

一、資料庫設計

  1. 建立一個名為survey的資料庫:

    CREATE DATABASE survey;
    登入後複製
  2. 建立名為questions和responses的表:
    建立questions表,用於儲存問卷的問題:

    CREATE TABLE questions (
     id INT PRIMARY KEY AUTO_INCREMENT,
     question_text VARCHAR(255) NOT NULL
    );
    登入後複製

    建立responses表,用於儲存使用者的答案:

    CREATE TABLE responses (
     id INT PRIMARY KEY AUTO_INCREMENT,
     question_id INT,
     response_text VARCHAR(255) NOT NULL,
     FOREIGN KEY (question_id) REFERENCES questions(id)
    );
    登入後複製

二、 Python程式碼實作

  1. 匯入必要的函式庫:

    import mysql.connector
    from mysql.connector import Error
    from flask import Flask, request, render_template
    登入後複製
  2. #連接到MySQL資料庫:

    def create_connection():
     connection = None
     try:
         connection = mysql.connector.connect(
             host='localhost',
             database='survey',
             user='your_username',
             password='your_password'
         )
         if connection.is_connected():
             print('Connected to MySQL database')
     except Error as e:
         print(e)
    
     return connection
    登入後複製
  3. # #建立Flask應用程式與路由:

    app = Flask(__name__)
    
    @app.route('/')
    def home():
     # 获取所有的问题
     connection = create_connection()
     cursor = connection.cursor()
     query = 'SELECT * FROM questions'
     cursor.execute(query)
     questions = cursor.fetchall()
     cursor.close()
     connection.close()
    
     return render_template('index.html', questions=questions)
    
    @app.route('/survey', methods=['POST'])
    def survey():
     # 获取用户的答案
     connection = create_connection()
     cursor = connection.cursor()
     response_text = request.form['response']
     question_id = request.form['question_id']
     query = 'INSERT INTO responses (question_id, response_text) VALUES (%s, %s)'
     cursor.execute(query, (question_id, response_text))
     connection.commit()
     cursor.close()
     connection.close()
    
     return 'Thank you for your response!'
    
    if __name__ == '__main__':
     app.run()
    登入後複製

  4. 建立前端頁面(index.html):

    <!DOCTYPE html>
    <html>
    <head>
     <title>Survey</title>
    </head>
    <body>
     <h1>Survey</h1>
     <form action="/survey" method="POST">
         {% for question in questions %}
             <p>{{ question[1] }}</p>
             <input type="hidden" name="question_id" value="{{ question[0] }}">
             <input type="text" name="response" required>
         {% endfor %}
         <input type="submit" value="Submit">
     </form>
    </body>
    </html>
    登入後複製

  5. ##三、執行與測試

    在終端機中執行Python程式碼:
  1. python survey_app.py
    登入後複製

    在瀏覽器中造訪http://localhost:5000,即可看到問卷頁面。
  2. 結論
本文介紹如何使用MySQL和Python開發一個簡單的線上問卷系統。透過資料庫設計和相關的程式碼實現,可以方便地收集使用者的觀點、回饋和意見。透過豐富前端頁面的設計與功能,可以進一步提升問卷的使用者體驗。希望本文能對讀者有所幫助,以及啟發更多創新的想法。

以上是如何利用MySQL和Python開發一個簡單的線上問卷的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!