对我如何执行PhantomJS文件感到困惑.需要建议的初学者.[MacOS]



我目前正试图在我的终端中执行hello.js示例文件,但完全失败了。我在网上找到的示例要么要求我键入:

phantomjs hello.js

我的终端返回

Can't open 'hello.js'

或者对我来说是的绝对文件路径

/usr/local/Cellar/phantomjs/2.1.1/share/phantomjs/examples/hello.js

我的终端返回

-bash: /usr/local/Cellar/phantomjs/2.1.1/share/phantomjs/examples/hello.js: Permission denied

我做错了什么?:(

提前谢谢。

屏幕截图

要在Phantomjs中运行文件,您要么需要为Phantomjs提供文件的完整路径:

phantomjs /usr/local/Cellar/phantomjs/2.1.1/share/phantomjs/examples/hello.js

或者,您可以通过将examples目录复制到易于访问的地方(例如,您的主目录(来让自己的生活更轻松

cp -r /usr/local/Cellar/phantomjs/2.1.1/share/phantomjs/examples ~/

(~/是指向主目录的快捷方式;您可以使用Finder将examples目录指向主目录(

在终端中更改到该目录

cd ~/examples

然后运行

phantomjs hello.js

相关内容

  • 没有找到相关文章

最新更新