无法通过Hyperledger Composer Rest API中的反应在钱包中上传卡

时间:2019-02-04 23:25:14

标签: reactjs hyperledger-fabric hyperledger hyperledger-composer

我正在尝试通过react前端将卡存储在Hyperledger作曲家Rest API的钱包中,但它始终给我以下错误:

'跨域请求被阻止:同一起源策略不允许读取CSS-Tricks explains处的远程资源。 (原因:CORS请求未成功)。'

在我的钱包中导入卡的代码如下:

axios.defaults.headers.common["Authorization"] =this.state.x;
  axios
  .post("http://localhost:3000/api/wallet/import", {
    card: data,
    name: "restAdmin"
  })
  .then(res => {
    console.log("Card response", res);
  })
  .catch(error => {
    console.log("Card error", error.response.data.error);
  });

任何帮助将不胜感激。

0 个答案:

没有答案