字段:published_on,:类型=>日期;未显示在 MongoID 中 +设计
我创建了模型“房子”。
我遵循了此教程。
我创建了我的脚手架,并在添加后转到我的模型:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题已解决!
对于在 mongoid 2.0 或更高版本中使用 Date 和 DateTime 的每个人,必须将下一个代码添加到您的模型中:
问题已在此链接中解决:
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:
The problem is fixed in this link:
https://github.com/mongoid/mongoid/issues/30#issuecomment-1211911
您手动添加了字段
:published_on
,是否也将其添加到attr_accessible
中?You manually added the field
:published_on
, did you also add it toattr_accessible
?