我似乎无法让jsdom执行外部脚本,也似乎找不到任何具体示例。调用测试函数时没有出现任何错误,但是没有任何 react 。
这是我的代码:
var window = jsdom.jsdom(body).createWindow();
jsdom.jQueryify(window, './lib/jquery.js', function () {
console.log(window.$("#a1").text());
window.testing();
console.log(window.$("#a2").text());
});
这是其加载的html:
<html>
<head>
<script type="text/javascript" src="stuff.js"></script>
</head>
<body>
Hi there
<div id="a1">
</div>
<div id="a2">
</div>
</body>
</html>
我的测试功能:
function testing() {
var a2 = document.getElementById("a2");
a2.innerHTML = 'Second div';
console.log("executed");
}
最佳答案
查看jsdom docs
在其余代码之前尝试以下操作:
require('jsdom').defaultDocumentFeatures = {
FetchExternalResources : ['script'],
ProcessExternalResources : ['script'],
MutationEvents : '2.0',
QuerySelector : false
}
var window = jsdom.jsdom(body).createWindow();
jsdom.jQueryify(window, './lib/jquery.js', function () {
console.log(window.$("#a1").text());
window.testing();
console.log(window.$("#a2").text());
});
/fyi#node.js IRC欢迎您使用:http://bit.ly/nodeIRC
关于javascript - jsdom未加载外部资源,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5365613/