Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过教程学习 Rails,您的平台非常支持我的笔记本电脑在 Windows 上运行,因此感谢您提供免费学习编码的可能性。
我目前正在尝试在 irb 中运行一些 ruby 代码,但我遇到了这个问题:
2.0.0p247 :001 > Date.today NoMethodError:未定义方法“今天”为日期:类
我检查了 ruby API,并且 Date 类肯定有这样的方法,所以我想这是关于使用 unix 模拟器的问题?
感谢您的回复,
你需要'date',在irb中试试这个......
require 'date' Date.today