我有一个用户类型:type User struct { Username string Email string Password string}还有一个帖子类型:type Post struct { User // how to define here? Title string Content string}帖子实体看起来像:用户:密钥(用户,'10000')标题:“有些倾斜”内容:“一些内容”怎么定义Post.User?
1 回答
叮当猫咪
TA贡献1776条经验 获得超12个赞
由于您的Post
实体包含完整的Key
s,因此用作datastore.Key
字段类型:
type Post struct {
User *datastore.Key
Title string
Content string
}
- 1 回答
- 0 关注
- 94 浏览
添加回答
举报
0/150
提交
取消