gpt4 book ai didi

javascript - 元掩码 web3 未定义

转载 作者:行者123 更新时间:2023-11-29 23:20:03 27 4
gpt4 key购买 nike

我已经在本地 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>

最佳答案

您是否尝试从 file:// 提供服务?如果是这样,它将不起作用。 MetaMask 拒绝提供文件系统 URL。通过 Web 服务器为您的应用程序提供服务。像 python -m SimpleHTTPServer 8000 这样的单行代码就可以了。

关于javascript - 元掩码 web3 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51056623/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com