标签: javascript python python-2.7 ghost.py
如何打开我想运行javascript的Ghost本地html文件?我只知道如何从互联网的教程中做到这一点。
from ghost import Ghost ghost = Ghost() page, extra_resources = ghost.open(url)
答案 0 :(得分:0)
而不是url提供本地位置。
示例:page, extra_resources = ghost.open('/home/dan/index.html')
page, extra_resources = ghost.open('/home/dan/index.html')