我有一个Products
结构:
type Products struct {
gorm.Model
CategoriesRefer int64 `json:"cat_id" gorm:"column:cat_id"`
Title string `json:"title" gorm:"column:title"`
...
Image string `json:"image" gorm:"column:image"`
}
JSON请求将包含path to the image
,它存储在我项目的另一个文件夹中(而不是在db文件夹中),我如何在结构中指定它?
1条答案
按热度按时间8ehkhllq1#
我相信这样的东西应该会起作用。
然而,正如在评论中提到的,这不是一个好主意,因为它将相对于编译的二进制可执行文件所在的目录。您可能希望使用类似环境变量的东西来控制此目录。这样,您可以将其设置为不同的目录,用于测试,开发,生产等。