我在本地PC上建了一个eth节点,代码没有问题,但是当我从eth节点退出,使用metamask运行代码时,web3是undefined。
你能告诉我如何解决这个问题吗?
<!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条答案
按热度按时间4c8rllxm1#
您是否尝试从
file://
提供服务?如果是,它将无法工作。MetaMask拒绝提供文件系统URL。通过Web服务器提供您的应用程序。像python -m SimpleHTTPServer 8000
这样的一行程序就可以了。bbmckpt72#
当您的以太坊节点关闭时,您的网站无法从您的节点获取信息,您可以切换到infura.io提供商