未定义的方法“条目”;对于 Mongoid 模型

发布于 2024-11-06 01:17:48 字数 304 浏览 0 评论 0原文

我按照这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可遇━不可求 2024-11-13 01:17:49

当您尝试将 mongoid 中的集合分配给单个模型时,会发生此错误。

例如:

user = User.new
user.campaigns = Campaign.new

这种特殊情况的解决方案是确保您将活动包装在数组中

user.campaigns = [Campaign.new]

This error will occur when you try to assign a collection in mongoid to a single model.

For example:

user = User.new
user.campaigns = Campaign.new

The solution to this particular case is to ensure sure you're wrapping campaign in an Array

user.campaigns = [Campaign.new]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文