我有一个与贡献者有 has_many 关系的发布模型。在模型中,我有一个方法可以按行创建 html-ready:
def authors
authors = []
Contributor.where(:publication_id => self.id).each do |author|
authors << "link_to "+author.name+", Contributor.find("+author.id.to_s+")"
end
authors.to_sentence
end
在我看来,我有以下几行:
by <%= @publication.authors %>
但它不是渲染链接,而是渲染原始代码,例如:
by link_to B, Contributor.find(1)
我尝试通过将 .html_safe 添加到 @publication.authors 的末尾来修补此问题,但无济于事。有没有更好的方法将这些链接从模型传输到视图?