TypeError: XMLHttpRequest is not a function
当我尝试与我的流星应用程序的服务器端的合同交互时,我得到了错误。
web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"))
var cocontract = web3.eth.contract(abi).at(address);
var name = (cocontract.name())
第 3 行引发了错误。如果我在客户端运行相同的代码,我不会遇到问题。