7

我对使用Phantomjs很感兴趣,我想从我的 Ruby on Rails 应用程序中运行它。然而,这是一个命令行工具(即我需要phantomjs rasterize.js http://raphaeljs.com/polar-clock.html clock.png在我的终端中运行类似的东西)。我将如何从我的应用程序执行命令行工具?

4

1 回答 1

8

在您的 ruby​​ 代码中使用反引号,例如:

output = `phantomjs rasterize.js http://raphaeljs.com/polar-clock.html clock.png`
于 2011-06-22T17:27:24.780 回答