无法连接到节点http:// localhost:8545
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无法连接到节点http:// localhost:8545相关的知识,希望对你有一定的参考价值。
问题截图: 我的系统目录中的Web3.min.js路径!
Web3.min.js从我的浏览器中的文件夹加载
web3.min.js的副本位于存在index.html文件的同一文件夹中。
代码已添加
节点的信息!我面临以下两个问题:
- 无法加载资源:web3.min.js:1 net :: ERR_CONNECTION_REFUSED
- 错误:无法连接到节点http://localhost:8545。
我的Index.html文件是
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <link rel="stylesheet" type="text/css" href="main.css">
</head> <body> <div class="container"> <h1>Coursetro Instructor</h1> <h2 id="instructor"></h2> <label for="name" class="col-lg-2 control-label">Instructor Name</label> <input id="name" type="text"> <label for="name" class="col-lg-2 control-label">Instructor Age</label> <input id="age" type="text"> <button id="button">Update Instructor</button> </div> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script> if (typeof web3 !== 'undefined') { web3 = new Web3(web3.currentProvider); } else { // set the provider you want from Web3.providers web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545")); } web3.eth.defaultAccount = web3.eth.accounts[0]; var CoursetroContract = web3.eth.contract([ { "constant": false, "inputs": [ { "name": "_fName", "type": "string" }, { "name": "_age", "type": "uint256" } ], "name": "setInstructor", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }, { "constant": true, "inputs": [], "name": "getInstructor", "outputs": [ { "name": "", "type": "string" }, { "name": "", "type": "uint256" } ], "payable": false, "stateMutability": "view", "type": "function" } ]); var Coursetro=CoursetroContract.at('0x95712aa4ff464e56f76af55da6239a368c459ed4'); console.log(Coursetro); </script> </body> </html>
答案
如果要连接到本地节点:
你已经包含了jquery cdn,类似地包含来自web3_cdn链接的web3。您可以从链接下载一个文件,然后通过webapp连接该文件
<script type="text/javascript" src="web3.min.js"></script>
并确保在运行应用程序时,您的元掩码已禁用。 Metamask将web3对象直接注入到您的应用程序中。
如需参考,请查看其他答案link
另一答案
我有这个问题,我解决了。
解决方案 :
您必须在文件夹项目中创建index.html和main.css,而不是在node_modules文件夹中。
以上是关于无法连接到节点http:// localhost:8545的主要内容,如果未能解决你的问题,请参考以下文章
无法让 jabber 客户端连接到在 localhost 上运行的 ejabberd
尝试将 php 文件连接到 localhost:localhost 当前无法处理此请求。 HTTP 错误 500
棱镜错误:无法连接到 http://localhost:4466 的服务器
Tomcat 在 Eclipse 中启动但无法连接到 http://localhost:8085/
错误:无法在 http+docker://localhost 连接到 Docker 守护程序 - 它正在运行吗? [关闭]