我正在创建Golang API,但遇到了一个阻止程序。对于每个POST,这就是我得到的:
"error": "sql: converting argument $2 type: unsupported type main.Data, a struct"
我希望数据格式
"name": "test",
"other": {
"age": "",
"height": ""
}
}
我该如何实现?请参阅下面的代码,到目前为止我已经尝试过了。
model.go
type Data struct {
ID int `json:"id"`
Name string `json:"name,omitempty"`
Other *Other `json:"other,omitempty"`
}
type Other struct {
Age string `json:"host,omitempty"`
Height string `json:"database,omitempty"`
}
func (d *Data) Create(db *sql.DB) error {
err := db.QueryRow(
"INSERT INTO configs(name, other) VALUES($1, $2) RETURNING id",
d.Name, &d.Other).Scan(&d.ID)
if err != nil {
return err
}
return nil
}
controller.go
...
func (a *App) createData(w http.ResponseWriter, r *http.Request) {
var d Data
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&d); err != nil {
fmt.Print(err)
fatalError(w, http.StatusBadRequest, "Invalid request")
return
}
defer r.Body.Close()
if err := d.Create(a.DB); err != nil {
fatalError(w, http.StatusInternalServerError, err.Error())
return
}
jsonResponse(w, http.StatusCreated, d)
}
我希望数据库中填充格式为
的数据 "name": "test",
"other": {
"age": "",
"height": ""
}
}
但由于错误而失败:
"error": "sql: converting argument $2 type: unsupported type main.Data, a struct"
答案 0 :(得分:0)
您可以进行以下修改:
import "encoding/json"
func (d *Data) Create(db *sql.DB) error {
var jsonOther string
if d.Other != nil {
jsonOther, _ = json.Marshal(d.Other)
err := db.QueryRow(
"INSERT INTO configs(name, other) VALUES($1, $2) RETURNING id",
d.Name, jsonOther).Scan(&d.ID)
if err != nil {
return err
}
return nil
}
请注意,Other
对象已显式序列化为JSON并作为字符串传递