在看x熊老师写的区块链全栈开发-DAPP开发实战当中的第五节DAPP实现之web3,当中要去web3.js复制一个链接到atom当中,但是我发现现在这个链接和熊老师视频里面的不一样了,当我输入现在网站上的链接的时候,用开发者工具什么也不会显示,当我输入视频当中复制的链接的时候显示的是web3 is not defined,就想问一下该怎么办才能把第一个界面进行下去。
报错的代码如下<html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="https://cdn.jsdelivr.net/npm/web3@latest./dist/web3.min.js"></script>
</head> <body> <div class="container">
<h1>Info Contract</h1>
<h2 id="info"></h2>
<label for="name" class="col-lg-2 control-label">Name</label>
<input id="name" type="text">
<label for="name" class="col-lg-2 control-label">Age</label>
<input id="age" type="text">
<button id="button">Update Info</button>
</div>
<script>
console.log("web3:" + web3);
</script>
</body> </html>
主要是看script那里,我其他的都照搬了,没有问题,麻烦大家了,比较着急