Angular使用随机URL进行请求

时间:2017-11-09 14:31:48

标签: angularjs node.js mongodb proxy

我试图为我的角应用程序创建一个代理,我的帖子请求一直被发送到

  

http://www.gamersunite.com/users

即使我试图发帖

  

http://localhost:3000/api/users

有一次,我的代理设置为

{
  "/api": {
    "target": "http://url.com",
    "secure": false,
    "pathRewrite": {"^/api" : ""}
  }
}

但现在它已经

{
  "/api": {
    "target": "http://localhost:3000",
    "secure": false,
    "logLevel": "debug"
  }
}

为什么它仍然会重定向到这个随机网址?

1 个答案:

答案 0 :(得分:0)

清除了缓存/ cookie,现在一切都按预期工作了