javascript - 为什么 Ghost.py 不加载/运行我的 Javascript?

标签 javascript python requirejs ghost.py

Ghost.py 应该运行 JS:http://jeanphix.me/Ghost.py/

require.js 通过 http 获取,但据我所知它没有运行,因为“js/main.built”永远不会被获取并且它指定的 JS 文件都没有被加载。这一切都在真实的浏览器中完美运行。

In [51]: ghost = Ghost(wait_timeout=60)

In [52]: page, resources = ghost.open(url)

In [53]: [r.url for r in resources]
Out[53]: 
[PyQt4.QtCore.QUrl(u'https://example.com/#consume/283e6571bcecf34143cbd60f35e0464b'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/ui.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/colorpicker.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/selectize.default.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/datepicker.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/site.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/jquery.fileupload-ui.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/style.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/bootstrap.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/css/redactor.css'),
 PyQt4.QtCore.QUrl(u'https://example.com/js/lib/require.js')]

In [54]: ghost.con
ghost.confirm  ghost.content  

In [54]: ghost.content
Out[54]: u'<!DOCTYPE html><html lang="en"><head>\n    <meta charset="utf-8">\n    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">\n    <title>Ving</title>\n\n    <link rel="stylesheet" href="css/ui.css">\n    <link rel="stylesheet" href="css/bootstrap.css">\n    <link rel="stylesheet" href="css/colorpicker.css">\n    <link rel="stylesheet" href="css/redactor.css">\n    <link rel="stylesheet" href="css/site.css">\n    <link rel="stylesheet" href="css/selectize.default.css">\n    <!-- My Bug fixes / overrides to work with real app -->\n    <link rel="stylesheet" href="css/style.css">\n    <link rel="stylesheet" href="css/datepicker.css">\n    <!-- Theme for uploader -->\n    <link rel="stylesheet" href="css/jquery.fileupload-ui.css">\n    <!-- Shims for IE support  -->\n    <!--[if lte IE 8]>\n      <script src="js/lib/html5shiv.js"></script>\n      <script src="js/lib/r2d3.min.js" charset="utf-8"></script>\n    <![endif]-->\n  </head>\n\n  <body>\n    <div id="wrapper">\n      <header id="header" class="container"></header>\n      <div id="content" class="container"></div>\n    </div>\n    <footer id="footer" class="container"></footer>\n    <div id="modal" class="modal modal-box hide fade"></div>\n    <script data-main="js/main.built" src="js/lib/require.js"></script>\n\n  \n\n</body></html>'

In [55]:

我还尝试加载“https://mail.google.com/”:

In [7]: url='https://mail.google.com/'

In [8]: ghost = Ghost(wait_timeout=60)

In [9]: page, resources = ghost.open(url)

In [10]: ghost.content
Out[10]: u'<html><head><meta http-equiv="Refresh" content="0;URL=https://mail.google.com/mail/"></head><body><script type="text/javascript" language="javascript"><!--\nlocation.replace("https://mail.google.com/mail/")\n--></script></body></html>'

In [11]: 

最佳答案

由于 require.js 异步加载内容,您必须等待自定义条件,例如:

g = Ghost()
g.open(url, wait=False)
page, resources = g.wait_for_text('something made by require.js')

关于javascript - 为什么 Ghost.py 不加载/运行我的 Javascript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19852182/

相关文章:

javascript - jquery 淡出和重定向在 IE 中不起作用

javascript - 根据最高值和日期将对象推送到新数组?在 JavaScript 中

javascript - 如何在 Javascript 字符串中插入 <CR>(回车)?

python - django-allauth 将用户名设置为与电子邮件相同

javascript - 如何检查是否集成了 Google map API key

javascript - 在单页应用程序中使用 knockout 绑定(bind)使用 id 进行导航

javascript - 在 HTML5 <canvas> 上绘制不同视角的模型

python - Mac OS X 上的 wxPython 2.9

python - 获取指定函数中调用的所有函数

javascript - requirejs:我可以要求一个全局运行时变量吗?