以下是我的模型,它有一个数组类型的字段
class User::Log::Presentation
include Mongoid::Document
include Mongoid::Timestamps
field :name, type: String
field :fields, type: Array, default: []
end
当我尝试创建文档时,它会引发以下错误。
TypeError: no implicit conversion of String into Integer
我完全迷失了。找不到任何答案是其他问题。请帮忙。