Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 devise gem 创建了一个博客。我如何在视图中显示帖子的作者姓名。我尝试了类似 <%= post.user %> 的方法,但它显示 #。我怎样才能做到正确?
除了身份验证系统本身所需的内容之外,Devise 不提供任何用户元数据。Devise 可能会(取决于您的配置)通过post.user.email.
post.user.email
您需要通过新迁移将 first_name、last_name 或 name 添加到您的用户模型。