3

我想将 web3 与 node 和 vuejs 一起使用来连接到 Ethereum Parity 节点。

  • 我正在使用带有 webpack 的 vue-cli。
  • 奇偶校验在 localhost 上运行。
  • 当我访问时http://localhost:8545,我看到哪个告诉我 Parity 正在倾听。

在此处输入图像描述

我创建了以下 Vue 组件:

<template>
  <div class="hello">
    <h1>{{ title }}</h1>
    <h2>{{ accounts() }}</h2>
  </div>
</template>

<script>
  import Web3 from 'web3'

  export default {
    name: 'hello',
    http: {
      root: '/root',
      headers: {
        AccessControlAllowOrigin: 'true'
      }
    },
    data () {
      return {
        title: 'web3.js App'
      }
    },
    methods: {
      accounts: function () {
        const ethereumUri = 'http://localhost:8545'   // 8540, 8545, 8180

        let web3 = new Web3(new Web3.providers.HttpProvider(ethereumUri))

        if (!web3.isConnected()) {
          return 'Unable to connect to ethereum node at ' + ethereumUri
        } else {
          let accounts = web3.eth.accounts
          return accounts
        }
      }
    }
  }
</script>

当我跑步时,npm run dev我得到了这个:

在此处输入图像描述

在控制台上,我看到了这个:

在此处输入图像描述

我尝试使用此配置代码添加 Access-Control-Allow-Origin 标头,但没有修复它。控制台错误似乎表明 Parity 节点需要设置此标头选项。

    http: {
      root: '/root',
      headers: {
        AccessControlAllowOrigin: 'true'
      }
    },
4

1 回答 1

3

解决方案是创建一个名为config.toml.

文件位置:

  • Windows:%UserProfile%\AppData\Roaming\Parity\Ethereum\config.toml
  • Linux:~/.local/share/io.parity.ethereum/config.toml
  • macOS:$HOME/Library/Application Support/io.parity.ethereum/config.toml

文件内容:

[parity]
#  Test Network 
chain = "ropsten"

[rpc]
# Allows Cross-Origin Requests from domain '*'. 
cors = "*"
# Allow connections only using specified addresses. 
hosts = ["", "http://localhost:8080"]

参考:

  • 奇偶校验配置文件文档
  • 奇偶校验配置文件生成器
  • 跨域资源共享 (CORS)参考

感谢 wostex 的评论。

于 2017-04-15T13:41:13.330 回答