使用 Rails 3.1.1
我正在创建一个通常由“文章”组成的旅行指南。在这些文章中,我写了每个地方。每篇文章大约 500 字长,在数据库中保存为 article.content 属性。
现在,我希望能够在这些文章中使用 Rails 辅助方法(即来自 application_helper)和“link_to”。我不能使用 <%= %> 只是因为 Rails 只会将其解释为文章中的文本。
我想要这样做的主要原因是使用智能内部链接(路由)和辅助方法。
进一步澄清:
文章是具有内容属性的模型。
a = Article.first
z = Article.last
a.content = "This is a long article where I want to place a smart link to z by using <%= link_to 'z article', article_path(z) %> and use my helper method largify so that I can <%= largify('this text') %> but I can't. What should I do?"
a.save
有解决这个问题的聪明方法吗?