我正在使用Rails 4,ruby 2和jbuilder gem来响应json。
我有一个文件index.json.jbuilder
在其中编写以下代码
json.partial! "apis/contents", comments: @comments
json.name @name
返回以下错误: -
no implicit conversion of String into Integer
答案 0 :(得分:0)
我认为这可能是由于对象的集合,你可以明确地定义部分,如下所示:
json.partial! partial: 'apis/contents', collection: @comments, as: :comment