Show username when posting comments in Rails

后端 未结 2 1847
隐瞒了意图╮
隐瞒了意图╮ 2021-01-29 00:36

I have an app when users post album reviews called Pins. I created a comments model for other users to comment on the reviews. I\'m struggling getting the comments to say \"Post

2条回答
  •  生来不讨喜
    2021-01-29 01:03

    You save the username in

    @comment.username = current_user
    

    and show it with:

    <%= comment.user.name %>
    

    but it have to be

    <%= comment.username %>
    

提交回复
热议问题