缺少逗号-错误的语法-具有内联结构

时间:2018-10-26 01:29:16

标签: go

我有这个:

    myint := strconv.FormatInt(id, 10)
    db.Exec(getTableCreationCommands(myint))

    tx.Commit()

    json.NewEncoder(w).Encode(struct {
        id string
    }{
        myint
    })

但是语法有问题,我明白了:

  

语法错误:换行符意外,期待逗号或}

1 个答案:

答案 0 :(得分:1)

您应在,之后添加myint

 myint := strconv.FormatInt(id, 10)
    db.Exec(getTableCreationCommands(myint))

    tx.Commit()

    json.NewEncoder(w).Encode(struct {
        id string
    }{
        myint ,
    })