Я создаю 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"