Ruby:如何在 YAML 中定义日期时间字段?
我正在为 Rails 应用程序创建测试数据。如何在 YAML 中定义日期时间字段的值?
I'm creating test data for a Rails app. How do I define the value for a datetime field in YAML?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
当rails生成fixture文件时,它在yaml文件中使用以下格式
when rails generates fixture files it uses the following format in the yaml files
在此处找到了答案:
Found the answer here:
当我 yaml DateTime 时,我通常将其打包为字符串:
我很想知道是否有更好的方法。
When I yaml DateTime, I generally pack it as a string:
I'd be interested to know if there's a better way.
对我来说,它包裹在“”中
For me works it wrapped in " "
有时区:
创建时间:2013-09-25 16:00:00 +0800
With Time zone:
created_at: 2013-09-25 16:00:00 +0800