当前位置: 首页 > 工具软件 > go-xorm > 使用案例 >

go-xorm 报错 “( could not be the first charactor”

罗祺
2023-12-01

该报错是由于映射表的结构的结构体中的 某个字段 比如

type Student struct {
 name string  `xorm:"int(11) autoincr pk" json:"name"`
 ProductId int  `xorm:"int(11) unique(uniq_product_id) not null comment('产品id')" json:"product_id"`
}

这里边的 xorm 里边的映射的括号多了( 所以可能会报错,需要挨个检查字段是否有多余的括号,然后去掉就可以了

 类似资料: