0

我正在使用 ejholmes Active_admin 编辑器,它工作正常,但在我的活动管理索引中,我看到带有标签的 html 代码,而不是正确的输出。我确实在我的视图中使用了 .html_safe 但这是我的活跃管理员的 posts.rb

...
index.do
    column :id
    column "Titolo", :title
    column "Corpo news", :body
    column "Creato il", :created_at
    column "Modificato il", :updated_at
    column :link
    column "Link Immagine", :image_url
    bool_column :attivo
    default_actions 
end
...

我想呈现我的“公司新闻”栏目。谢谢您的帮助!

4

1 回答 1

0

我想你需要使用方法 .to_html 正如你在源代码中看到的 那样所以在你需要调用的视图中

body.to_html

于 2013-01-21T20:45:53.650 回答