如何找到帮助方法在rails中的视图外创建html标记

时间:2013-09-12 17:01:25

标签: ruby-on-rails

我创建一个种子文件,生成带有虚拟html的虚拟帖子。我使用Faker gem来帮助ipsum文本,但我也希望能够添加html标签(特别是img标签)而无需硬编码。是否有像actionview中那样的帮助者,即image_tag。

2 个答案:

答案 0 :(得分:1)

你走了:

ActionController::Base.helpers.image_tag("image.png")

答案 1 :(得分:0)

您可以从ActionController :: Base.helpers

访问所有帮助程序
ActionController::Base.helpers.image_tag("foo")