我有3个模型,,,,,,,如何user has many articles
让用户的名字在他发布时出现在评论或文章中user has many comments
?articles belongs to user
comments belongs to user
<%= div_for comment do %>
<p><strong><%= %> says</strong></p> # how should i write a condition here to make the name of the commenter appear when he puts a comment
<%= simple_format comment.content %>
<% end %>