未定义的方法“条目”;对于 Mongoid 模型
我按照这个 screencast 使用 Mongoid 在我的应用程序中设置标签,但是当我尝试保存模型时,我收到如下 NoMethodError:
NoMethodError: undefined method 'entries' for #<Campaign:0x42b10c0>
任何提示可以解决此问题吗?
谢谢
I'm follow this screencast for setting tags in my application with Mongoid but when I try to save my model I get a NoMethodError like this:
NoMethodError: undefined method 'entries' for #<Campaign:0x42b10c0>
Any hint to solve this problem?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您尝试将 mongoid 中的集合分配给单个模型时,会发生此错误。
例如:
这种特殊情况的解决方案是确保您将活动包装在数组中
This error will occur when you try to assign a collection in mongoid to a single model.
For example:
The solution to this particular case is to ensure sure you're wrapping campaign in an Array