需要来自其他域的API

时间:2015-10-21 15:36:11

标签: javascript

我在另一个域名上有api,它确实存在,但出于讨论目的,让我们说它位于'http://www.example.com/api/MyApi.js'

我试图在我的主应用程序中要求它:

 const MyApi = require('http://www.example.com/api/MyApi.js');

 componentDidMount() {
    MyApi.getAll()
      .then((response) => {
      let data = response.data
   } 
 }

MyApi连接到本地计算机上的json文件。

但是,我收到错误:

  

无法解析模块“http://www.example.com/api/MyApi.js

但我可以解决这个问题吗?

非常感谢!

0 个答案:

没有答案