登录
首页 >  Golang >  Go教程

Golang开发问卷调查项目教程

时间:2025-12-05 20:16:01 141浏览 收藏

推广推荐
免费电影APP ➜
支持 PC / 移动端,安全直达

本教程旨在指导开发者使用Golang快速搭建一个简易的问卷调查系统。通过定义`Survey`和`Response`结构体,并结合HTTP服务,实现问卷展示、答案提交和结果查看等核心功能。文章详细介绍了项目结构设计、数据模型定义、HTTP处理器编写以及HTML模板创建等关键步骤,并提供代码示例。无论你是Golang初学者还是有一定经验的开发者,都能通过本教程轻松掌握如何利用Golang构建一个简单的问卷调查应用,非常适合练手和快速原型开发。立即开始你的Golang问卷调查项目之旅!

答案是使用Golang搭建一个简易问卷系统,通过定义Survey和Response结构体,实现展示问卷、提交回答和查看结果的完整流程。

Golang如何开发简单的问卷调查项目

用Golang开发一个简单的问卷调查项目,核心是搭建HTTP服务、设计数据结构、处理表单提交和展示结果。整个过程不复杂,适合初学者练手。以下是具体实现思路和步骤。

1. 项目结构设计

先规划基础目录结构,便于后续维护:

  • main.go:主程序入口
  • handlers/:存放HTTP处理器函数
  • models/:定义问卷和回答的数据结构
  • templates/:HTML模板文件
  • static/:存放CSS、JS等静态资源(可选)

2. 定义数据模型

models/questionnaire.go 中定义问卷和回答的结构:

package models

type Question struct {
    ID      int
    Text    string
    Type    string // "text", "radio", "checkbox"
    Options []string
}

type Survey struct {
    Title      string
    Questions  []Question
}

type Response struct {
    Answers map[int]string // 简化版:问题ID -> 回答内容
}

可以用全局变量临时存储问卷和收集的回答,适合小项目:

var CurrentSurvey Survey
var Responses []Response

3. 编写HTTP处理器

handlers/survey.go 中实现三个主要接口:

  • GET /:显示问卷页面
  • POST /submit:接收提交的答案
  • GET /result:查看统计结果

示例代码片段:

func ShowSurvey(w http.ResponseWriter, r *http.Request) {
    tmpl := template.Must(template.ParseFiles("templates/survey.html"))
    tmpl.Execute(w, CurrentSurvey)
}

func SubmitResponse(w http.ResponseWriter, r *http.Request) {
    if r.Method != "POST" {
        http.Redirect(w, r, "/", http.StatusSeeOther)
        return
    }

    r.ParseForm()
    response := Response{Answers: make(map[int]string)}
    for i := range CurrentSurvey.Questions {
        key := fmt.Sprintf("q%d", i)
        response.Answers[i] = r.FormValue(key)
    }
    Responses = append(Responses, response)

    http.Redirect(w, r, "/result", http.StatusSeeOther)
}

4. 创建HTML模板

templates/survey.html 中动态生成表单:

<h1>{{.Title}}</h1>
<form method="post" action="/submit">
  {{range $index, $q := .Questions}}
    <p>
      <label>{{$q.Text}}</label>
      {{if eq $q.Type "text"}}
        &lt;input type=&quot;text&quot; name=&quot;q{{$index}}&quot; required&gt;
      {{else if eq $q.Type "radio"}}
        {{range $opt := $q.Options}}
          &lt;input type=&quot;radio&quot; name=&quot;q{{$index}}&quot; value=&quot;{{$opt}}&quot; required&gt; {{$opt}}<br>
        {{end}}
      {{end}}
    </p>
  {{end}}
  <button type="submit">提交</button>
</form>

结果页可简单列出所有回答数量或原始数据。

5. 主程序启动服务

main.go 中注册路由并启动服务器:

func main() {
    // 初始化问卷
    CurrentSurvey = models.Survey{
        Title: "用户满意度调查",
        Questions: []models.Question{
            {ID: 0, Text: "您对我们的服务满意吗?", Type: "radio", Options: []string{"满意", "一般", "不满意"}},
            {ID: 1, Text: "建议:", Type: "text"},
        },
    }

    // 路由
    http.HandleFunc("/", handlers.ShowSurvey)
    http.HandleFunc("/submit", handlers.SubmitResponse)
    http.HandleFunc("/result", handlers.ShowResult)

    // 静态资源(可选)
    http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))

    println("服务运行在 :8080")
    http.ListenAndServe(":8080", nil)
}

基本上就这些。运行后访问 http://localhost:8080 即可填写问卷。

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Golang开发问卷调查项目教程》文章吧,也可关注golang学习网公众号了解相关技术文章。

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>