我正在尝试从自定义RedCloth标记中调用一个视图助手,并且完全没有运气。我可以找到的所有示例都有自定义标记方法创建并返回一个文字字符串,而根本不调用任何其他方法。
我正在尝试创建自定义RedCloth标记以输出每周计划;已经在帮助器中编写的代码,因为它也在应用程序的其他区域中使用。
所以这是我的问题归结为(大量减少的)代码:
应用程序/视图/页/ show.html.erb:
<%= raw redcloth @page.content %
应用程序/助手/ pages_helper.rb:
module PagesHelper
def redcloth(content)
r = RedCloth.new content
r.extend ScheduleTag
r.to_html
end
end
应用程序/助手/ schedule_tag.rb:
module ScheduleTag
include ScheduleHelper
def schedule(options)
build_schedule
end
end
应用程序/助手/ schedule_helper.rb:
module ScheduleHelper
def build_schedule
content_tag :div do
content_tag :span,
"Why won't my helper just work by magic like the rest of " \
"rails seems to?"
end
end
end
执行时,rails声称如下:
TypeError in Pages#show
Showing /blah/blah/blah/app/views/pages/show.html.erb where line #1 raised:
can't convert Symbol into Integer
Extracted source (around line #1):
1: <%= raw redcloth @page.content %>
Rails.root: /blah/blah/blah
Application Trace | Framework Trace | Full Trace
app/helpers/schedule_helper.rb:3:in `build_schedule'
app/helpers/schedule_tag.rb:42:in `schedule'
app/helpers/pages_helper.rb:22:in `redcloth'
app/views/pages/show.html.erb:1:in _app_views_pages_show_html_erb___756530284_81829440__535015588'
app/controllers/pages_controller.rb:23:in `show'
我可以通过从使用帮助程序更改为类来取得一些进展,但该类仍然在使用标准帮助程序时遇到问题:
/app/helpers/schedule_builder.rb:
class ScheduleBuilder
extend ActionView::Helpers::TagHelper
def self.build_schedule
content_tag :div do
content_tag :span,
"Why won't my helper just work by magic like the rest of " \
"rails seems to?"
end
end
end
铁路说:
NoMethodError in Pages#show
Showing /blah/blah/blah/app/views/pages/show.html.erb where line #1 raised:
undefined method `output_buffer=' for ScheduleBuilder:Class
Extracted source (around line #1):
1: <%= raw redcloth @page.content %>
Rails.root: /blah/blah/blah
Application Trace | Framework Trace | Full Trace
app/helpers/schedule_builder.rb:5:in `build_schedule'
app/helpers/schedule_tag.rb:42:in `schedule'
app/helpers/pages_helper.rb:22:in `redcloth'
app/views/pages/show.html.erb:1:in `_app_views_pages_show_html_erb___756530284_81708830__535015588'
app/controllers/pages_controller.rb:23:in `show'
那我该怎么办?我错过了一些完全显而易见的东西,应该羞愧地埋头,或者根本不可能从一个幻想的地方打电话给帮手?我是否需要填充它并获取自定义标记以复制ScheduleHelper模块中的所有代码?
非常感谢任何帮助。
答案 0 :(得分:2)
好的,我自己也找到了一个可接受的解决方案。所以我会成为一个好孩子并分享。
而不是帮助器,我将使用一个呈现部分的类,所以问题应该真正变成:“从自定义RedCloth标记调用部分”。
(我没有评论代码,它应该是非常自我记录的)
应用程序/助手/ schedule_tag.rb:
module ScheduleTag
def schedule(options)
Schedule.new.render Date.today.monday
end
end
应用程序/助手/ schedule.rb:
class Schedule < ActionView::Base
include ActionView::Helpers::TagHelper
include Rails.application.routes.url_helpers
def render week
self.view_paths = "app/views"
super :partial => "schedule/schedule",
:locals => { :week => week,
:schedule => ScheduledClass.get_schedule(week) }
end
end
应用程序/视图/时间表/ _schedule.html.erb:
<table id="schedule">
<tbody>
<tr>
<td>Hoop-dee-doo, it works!</td>
<%= content_tag :td do %>
<%= link_to "so do tag & route helpers", happy_monkey_path(:happy => "very") %>
<% end %>
</tr>
</tbody>
</table>
稍微说一下,如果你试试这个,你可能偶然发现RedCloth转义你的选项字符串的问题。只需将==
中的选项括起来,就可以通过字面顺序传递选项。例如schedule. =={"weeks":["this","next"]}==
。这可能有点危险,所以一定要检查是否存在问题。