所以,我正在尝试使用JBuilder返回一些相当标准的json,其中一个字段是由Redcarpet解析为HTML的一些markdown。
json.categories @all_categories do |category|
json.extract! category, :name
json.black_icon_url category.black_icon.url
json.white_icon_url category.white_icon.url
json.events category.events do |event|
json.extract! event, :name, :short_description
json.descripton event, @markdown.render(event.description) # LOOK HERE!
json.image_url event.image.url
json.contacts [event.contact1, event.contact2] do |contact|
json.extract! contact, :name, :phone, :facebook_username if contact
end
end
end
问题是这段相当简单的代码抛出了NoMethodError
。
Showing /../app/views/events/index.json.jbuilder where line #8 raised:
undefined method `<p>Speed is what defines us.</p>...
我对此感到有点困惑......似乎这个字符串在某种程度上变成了方法调用?