我收到以下语法错误:
(eval):1: syntax error, unexpected $undefined
$#<MenuBuilder:0x007fccee84e7f8> = #<MENUBUILDER:0X007FCCEE84E7F8>
^
这是代码执行:
#main-menu
= menu do |m|
= m.submenu "Products" do
= m.item "Products", Product
module BuildersHelper
def menu(options = {}, &block)
MenuBuilder.new(self).root(options, &block)
end
end
class MenuBuilder
attr_accessor :template
def initialize(template)
@template = template
end
def root(options, &block)
options[:class] = "jd_menu jd_menu_slate ui-corner-all"
content_tag :ul, capture(self, &block), options
end
def item(title, url, options = {})
content_tag :li, options do
url = ajax_route(url) unless String === url
url = dash_path + url if url.starts_with?("#")
link_to title, url
end
end
def submenu(title, options = {}, &block)
content_tag :li do
content_tag(:h6, title.t) +
content_tag(:ul, capture(self, &block), :class => "ui-corner-
all")
end
end
end
root方法中的capture()调用失败:
content_tag :ul, capture(self, &block), options
self指的是MenuBuilder的实例,我肯定会将一个块作为另一个参数传递。如果我在if block_given中抛出puts语句?它会执行,但它不会通过上面的content_tag行。
答案 0 :(得分:0)
问题似乎与您使用the capture
helper method。
该方法接受一个视图代码块,并将其分配给可在视图中的其他位置使用的变量。
以下是更多信息:http://api.rubyonrails.org/classes/ActionView/Helpers/CaptureHelper.html#method-i-capture
你确定你实际上是将一个块传递给执行捕获的代码吗?
你可能会考虑这样的事情:
content_tag :li do
if block_given?
content_tag(:h6, title.t) +
content_tag(:ul, capture(self, &block), :class => "ui-corner-all")
else
content_tag(:h6, title.t) # whatever is appropriate if there's no block passed
end
end
答案 1 :(得分:0)