英文:
GORM : I inserted Data to Mysql DB but inserted empty value and null with golang gorm
问题
我尝试使用Golang和GORM MySQL驱动程序插入数据,但插入的值为空。
var ipsin = ips{value: ipstr, org: org, country: country, city: city, latitude: latitude, longitude: longitude, isp: isp, asn: asn}
fmt.Println(ipsin)
// result := db.Select("value", "org", "country", "city", "latitude", "longitude", "isp", "asn").Create(&ipsin)
result := db.Table("ips").Create(&ipsin)
这是我的代码,请帮助我。
英文:
i try insert data with golang and gorm mysql driver but inserted value is null
var ipsin = ips{value: ipstr, org: org, country: country, city: city, latitude: latitude, longitude: longitude, isp: isp, asn: asn}
fmt.Println(ipsin)
// result := db.Select("value", "org", "country", "city", "latitude", "longitude", "isp", "asn").Create(&ipsin)
result := db.Table("ips").Create(&ipsin)
thats my code
please help me
答案1
得分: 1
我认为所有的数据类型都是字符串,并设置了主键等,请根据您的要求进行更改。
您应该按照以下方式进行操作:
您的DTO应该像这样:
type Ips struct {
CreatedAt time.Time `gorm:"autoCreateTime"` //可选
UpdatedAt time.Time `gorm:"autoUpdateTime"` //可选
Value string `json:"value" binding:"required"`
Org string `json:"org" gorm:"primaryKey"`
Country string `json:"country"`
City string `json:"city"`
Latitude string `json:"latitude"`
Longitude string `json:"longitude"`
Isp string `json:"isp"`
Asn string `json:"asn"`
}
在数据库中创建或更改您的表格:
err := Client.AutoMigrate(&Ips{})
将您的数据插入表格中:
result := Client.Create(&Ips{Value: ipstr, Org: org, Country: country,
City: city, Latitude: latitude,
Longitude: longitude, Isp: isp, Asn: asn})
英文:
I think all data types are string and set mental primary key and etc. pls change it with your requirement.
you should do like below:
> your DTO like it
type Ips struct {
CreatedAt time.Time `gorm:"autoCreateTime"` //optional
UpdatedAt time.Time `gorm:"autoUpdateTime"` //optional
Value string `json:"value" binding:"required"`
Org string `json:"org" gorm:"primaryKey"`
Country string `json:"country"`
City string `json:"city"`
Latitude string `json:"latitude"`
Longitude string `json:"longitude"`
Isp string `json:"isp"`
Asn string `json:"asn"`
}
> create or change your table in DB
err := Client.AutoMigrate(&Ips{})
> insert your data into table
result := Client.Create(&Ips{Value: ipstr, Org: org, Country: country,
City: city, Latitude: latitude,
Longitude: longitude, Isp: isp, Asn: asn})
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论