metamask web3未定义

时间:2018-06-27 07:12:13

标签: javascript web3 metamask

我已经在本地PC中建立了一个eth节点。 代码没问题。 但是当我从eth节点退出时, 并使用metamask运行代码,web3是未定义的。

你能告诉我如何解决这个问题吗?

<!DOCTYPE html>
<html>
<head>
<title>Using web3 API with MetaMask</title>
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js/dist/web3.min.js"></script>
<!-- for ecrecover -->
<script type="text/javascript" src="D:\blockchain\test\ethereum\ethereumjs-util.js"></script>
<script>
window.addEventListener('load', function() {
  // Checking if Web3 has been injected by the browser (Mist/MetaMask)
  if (typeof web3 !== 'undefined') {
    // Use Mist/MetaMask's provider
    window.web3 = new Web3(web3.currentProvider);
  } else {
    console.log('No web3? You should consider trying MetaMask!')
    window.web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
  }
</script>
</head>
</html>

2 个答案:

答案 0 :(得分:0)

您是否要从file://开始服务?如果是这样,它将无法正常工作。 MetaMask拒绝提供文件系统URL。通过Web服务器服务您的应用程序。像python -m SimpleHTTPServer 8000这样的单行代码就可以。

答案 1 :(得分:0)

当以太坊节点关闭时,您的网站无法从该节点获取信息,您可以切换到infura.io提供程序

window.web3 = new Web3(new Web3.providers.HttpProvider("https://mainnet.infura.io"))