使用设备时如何从 ID 获取电子邮件?
假设我有一个假设:
@post.user_id
,其中用户 has_many 个帖子,并且我正在使用 devise,
我想做类似的事情:
@post.user_id.email 但这会失败;在这里获取电子邮件地址的优雅方式是什么?
So let's say I've got a hypothetical:
@post.user_id
where User has_many posts and I'm using devise,
I'd like to do something like:
@post.user_id.email but this fails; what's the elegant way of getting the email address here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
@post.user.email
,假设您的模型具有正确的关联try
@post.user.email
, assuming your models have right associations