我有 2 个文件:index.html 和 index.js。我正在使用它们来尝试进行高速公路通信。高速公路可以工作,但“何时”不起作用。
我已经使用 bower 下载并安装了 Autobahn,然后从 html 中手动包含 autobahn.js。我对 When 做了同样的事情,但是在 When 库中出现了一个错误。
索引.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Testing Autobahn</title>
</head>
<body>
<p> Fancy paragraph! </p>
<!--Bower-->
<script src="./bower_components/module/module.js"></script>
<script src="./bower_components/autobahn/autobahn/autobahn.min.js"></script>
<script src="./bower_components/when/when.js"></script>
<!--Node.js-->
<!--<script src="./node_modules/autobahn/lib/autobahn.js"></script>-->
<!--Browserify-->
<!--<script src="./bundle.js"></script>-->
<!--The actual main script file-->
<script type="text/javascript" src="index.js"></script>
</body>
</html>
当我在网络浏览器中打开 index.html 时,我得到以下信息: