登录
首页 >  Golang >  Go问答

Golang 在更新我使用的 postgresql 数据库时遇到困难

来源:stackoverflow

时间:2024-03-13 22:00:27 319浏览 收藏

各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题《Golang 在更新我使用的 postgresql 数据库时遇到困难》,很明显是关于Golang的文章哈哈哈,其中内容主要会涉及到等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!

问题内容

我似乎无法通过 golang 更新我的数据库。插入数据工作正常,但更新似乎是一个问题。我试图获取受影响的行数,但它显示 0。我不知道我做错了什么。令人惊讶的是,它没有给我任何错误。此时我需要一些帮助。

func updatestart(w http.ResponseWriter, r *http.Request) {
    if r.Method != "GET" {
        http.Error(w, http.StatusText(405), http.StatusMethodNotAllowed)
    }
    r.ParseForm()
    id := r.FormValue("id")
    if id == "" {
        http.Error(w, http.StatusText(400), http.StatusBadRequest)
        return
    }
    row := db.QueryRow(`SELECT * FROM person WHERE id = $1;`, id)
    p := Person{}
    err := row.Scan(&p.Id, &p.Firstname, &p.Lastname, &p.Email, &p.Gender, &p.Country)
    if err != nil && err != sql.ErrNoRows {
        fmt.Println(err)
        http.Redirect(w, r, "/", 307)
        return
    }
    templates.ExecuteTemplate(w, "update.html", p)

}

func updateend(w http.ResponseWriter, r *http.Request) {
    fmt.Println("part 2")
    if r.Method != "POST" {
        fmt.Println("part 2a")
        http.Error(w, http.StatusText(405), http.StatusMethodNotAllowed)
        return
    }
    r.ParseForm()
    p := Person{}
p.Id = r.FormValue("id")
    p.Firstname = r.FormValue("firstname")
    p.Lastname = r.FormValue("lastname")
    p.Email = r.FormValue("email")
    p.Gender = r.FormValue("gender")
    p.Country = r.FormValue("country")

    if p.Firstname == "" || p.Lastname == "" || p.Email == "" || p.Gender == "" || p.Country == "" {
        fmt.Println("All the fields have not been filled.")
        templates.ExecuteTemplate(w, "updateend.html", "Your data was NOT updated. Check back to do that")
        http.Error(w, http.StatusText(400), http.StatusBadRequest)
        return

    }
    fmt.Println("part 33333")
    p.Id = 0
    res, err := db.Exec("UPDATE person SET id = $1, firstname = $2, lastname = $3, email = $4, gender = $5, country = $6 WHERE id = $1;", p.Id, p.Firstname, p.Lastname, p.Email, p.Gender, p.Country)
    if err != nil {
        fmt.Println(err)
        http.Error(w, http.StatusText(500), http.StatusInternalServerError)
        templates.ExecuteTemplate(w, "updateend.html", "it did not update records")

        return
    }

        return
    }
    count, err := res.RowsAffected()
    if err != nil {
        panic(err)
    }
    fmt.Println(count)
    templates.ExecuteTemplate(w, "updateend.html", "you have successfully updated your data")

}

解决方案


@mkopriva 说的话。

要更新的记录的 id 必须以某种方式与更新的信息一起传递到后端。通过这样呈现的表单传递 id 的最简单方法是将 id 放入表单模板 update.html 的隐藏字段中

由于您需要将字符串更改为整数,我们一定会

import(
   // existing imports ...
   "strconv"
)

我们无法确定输入是整数。这意味着需要处理一个错误情况。如果输入无效,我们

p := Person{}
if id, err := strconv.ParseInt(r.FormValue("id"), 10, 64); err != nil {
  // respond 400 to user - bad request
  return
} else {
  p.Id = id
}    
// ... proceed to set other fields in `p` and process input

今天关于《Golang 在更新我使用的 postgresql 数据库时遇到困难》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>