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 3 中,我想使用 ruby 代码在 windows 平台上运行 cmd 提示符。意味着单击网页上的其中一个 url,它将在带有参数的 Windows 托管服务器上运行命令提示符。
在这里我想通过一些rails命令来执行
“rails 生成模型用户名:字符串”
提前致谢
听起来像是有风险的业务,但在最基本的 Ruby 级别上,您可以使用system
system
system "rails generate model User first_name:string"
内核:系统文档