AngularJS-重定向到另一个URL

时间:2018-07-11 16:30:55

标签: angularjs karma-runner

我的问题很简单。我正在使用业力进行测试,它应从localhost:5050(我的数据服务器)获取数据,但应从localhost:9876(我的业力服务器)获取数据。

我试图在karma.conf.js中添加一个代理配置,但是它似乎不起作用。

proxies: {
    'http://localhost:9876/null/inData' :  'http://localhost:5050/null/inData'
  }

如何将服务请求从端口9876重定向到5050?

示例:

GET http://localhost:9876/null/inData/accountID 404 (Not Found)

应该是

GET http://localhost:5050/null/inData/accountID OK

0 个答案:

没有答案