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.
用户在我的博客式网站上发帖后,我希望网站在帖子下方发布发布日期和用户姓名。谢谢你的帮助。
对于您创建和更新的时间,您可以使用created_atand updated_atwith Timestamps,其中created_at给出了创建的日期/时间并updated_at给出了最新的更新日期/时间。对于您的发布日期,您可以使用一个额外的字段,例如 publish_at 类型的日期/时间,在您发布文章时更新,
created_at
updated_at
Timestamps
如果您的帖子模型属于用户模型,您可以这样查看用户名:
@post.user.name
对于时间戳:
@post.created_at