weixin_45134380 2019-07-22 22:19 采纳率: 0%
浏览 229

未报错,但无法把客户端数据写入数据库中

请大神解疑:为什么无法进入到localhost:8090/upload界面 且 为什么无法把客户端输入数据写入到数据库中?

以下是后端代码:

package main

import (
    "net/http"
    "html/template"
    _ "github.com/go-sql-driver/mysql"
    "database/sql"
    "fmt"
)

func welcome(w http.ResponseWriter,r *http.Request)  {
    t,_:=template.ParseFiles("static/application.html")
    t.Execute(w,nil)
}

func upload(w http.ResponseWriter,r *http.Request)  {
    t,_:=template.ParseFiles("static/success.html")
    t.Execute(w,nil)
    a:=r.FormValue("applicant")
    th:=r.FormValue("theme")
    c:=r.FormValue("content")
    //连接mysql实现数据新增
    //1.打开连接
    db,err:=sql.Open("mysql","root:root@tcp(localhost:8090)/application")
    db.Ping()
    defer func() {
        db.Close()
    }()
    if err!=nil {
        fmt.Println("数据连接失败")
        return
    }
    //2.预处理SQL
    stmt,err:=db.Prepare("insert into application values (default ,?,?,?)")
    defer func() {
        stmt.Close()
    }()
    if err!=nil {
        fmt.Println("预处理失败")
        return
    }
    result,err:=stmt.Exec(a,th,c)
    if err!=nil {
        fmt.Println("sql执行失败")
        return
    }
    count,err:=result.RowsAffected()
    if err!=nil {
        fmt.Println("结果获取失败")
        return
    }
    //3.获取结果
    if count>0 {
        fmt.Println("新增成功")
    }else {
        fmt.Println("新增失败")
    }
    //4.关闭连接(以上defer函数实现关闭连接)
}

func main() {
    server:=http.Server{Addr:":8090"}
    http.HandleFunc("/",welcome)
    http.HandleFunc("/upload",upload)
    server.ListenAndServe()
}

以下是前端代码:
图片说明图片说明
图片说明

  • 写回答

1条回答 默认 最新

  • 关注

    upload函数里面,能取到传过来的几个参数吗

    评论

报告相同问题?

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境