我有这个:
myint := strconv.FormatInt(id, 10)
db.Exec(getTableCreationCommands(myint))
tx.Commit()
json.NewEncoder(w).Encode(struct {
id string
}{
myint
})
但是语法有问题,我明白了:
语法错误:换行符意外,期待逗号或}
答案 0 :(得分:1)
您应在,
之后添加myint
myint := strconv.FormatInt(id, 10)
db.Exec(getTableCreationCommands(myint))
tx.Commit()
json.NewEncoder(w).Encode(struct {
id string
}{
myint ,
})