0

我有 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 时,我得到以下信息:

错误

4

1 回答 1

0

找到了答案。交易是使用 npm 安装库。之后在 node-modules 文件夹中有 2 个包含库的文件夹:1)高速公路浏览器 2)当

在像这样包含它们之后,它就像一个魅力:

于 2020-07-20T07:18:13.990 回答