使用(MEAN Stack)与Node.js进行角电子

时间:2019-01-09 11:09:16

标签: node.js angular electron angular6

我已经创建了一个MEAN Stack应用程序(角度6)。 现在,我要使用相同的应用程序将其转换为桌面应用程序。 我们可以在电子中实现这一点,以便我阅读此Article。通过使用本文,我创建了我的应用程序。但我没有收到从应用程序到服务器(node.js)的请求。

这是我的角度要求:

postlogindata(body: any): Observable<any> {

    return this._http.post(`http://192.168.1.174:8085/login`, body, {
      observe:'body',
     withCredentials :true,
      headers:new HttpHeaders().append('Content-Type','application/json')
    });
  }

在这里,我在节点server.js页面上收到了请求

app.post('/login', UserConfig.loginVerify);

cors原点配置

app.use(cors({
    origin: ['http://localhost:4200','http://localhost:8085','http://192.168.1.174:8085', 'http://127.0.0.1:4200'],
    credentials: true
}));

在Web应用程序中,我没有收到任何错误。但是在桌面应用程序中,我的控制台出现此错误。 enter image description here 我读了很多文章,但都没有得到答案。

谁能向我解释如何解决这个问题?

0 个答案:

没有答案