字段:published_on,:类型=>日期;未显示在 MongoID 中 +设计

发布于 2024-12-07 07:00:10 字数 301 浏览 1 评论 0原文

我创建了模型“房子”。

我遵循了教程。

我创建了我的脚手架,并在添加后转到我的模型:

field :published_on, :type => Date;

然后我在视图中看到日历以更新视图(如教程),但是当我更新日期时不会出现日期。

我按照教程操作,但创建或更新日期没有出现。

有什么问题吗?

I have created Model "House".

I followed this tutorial.

I created my scaffold and I go to my model after I add:

field :published_on, :type => Date;

Then I see the calendar in views for update the views like tutorial, but when I update the DATE in not appear the date.

I followed the tutorial, but to create or update date not appear.

What's the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

九局 2024-12-14 07:00:10

问题已解决!

对于在 mongoid 2.0 或更高版本中使用 Date 和 DateTime 的每个人,必须将下一个代码添加到您的模型中:

include Mongoid::MultiParameterAttributes

问题已在此链接中解决:

https://github.com/mongoid/mongoid/issues/30#issuecomment-1211911

Problem fixed!

For every people that working with Date and DateTime in mongoid 2.0 or higher, must add to your model the next code:

include Mongoid::MultiParameterAttributes

The problem is fixed in this link:

https://github.com/mongoid/mongoid/issues/30#issuecomment-1211911

烙印 2024-12-14 07:00:10

您手动添加了字段 :published_on,是否也将其添加到 attr_accessible 中?

You manually added the field :published_on, did you also add it to attr_accessible?

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