从 Ruby on Rails 应用程序运行 phantomjs
我对使用 Phantomjs 感兴趣,并且想从我的 Ruby on Rails 应用程序运行它。但是,这是一个命令行工具(即我需要在终端中运行 phantomjs rasterize.js http://raphaeljs.com/polar-clock.html Clock.png
之类的东西)。如何从我的应用程序执行命令行工具?
I'm interested in using Phantomjs and I'd like to run it from my Ruby on Rails application. However, this is a command line tool (i.e. I'd need to run something like phantomjs rasterize.js http://raphaeljs.com/polar-clock.html clock.png
in my terminal). How would I execute a command line tool from my app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ruby 代码中使用反引号,例如:
Use backticks in your ruby code e.g.: