Apollo客户端未使用预期的uri连接远程GraphQL服务器

时间:2020-06-01 22:49:45

标签: graphql apollo

我是阿波罗的新手。我按照Apollo文档中的说明为远程GraphQL服务器设置了uri:Apollo Angular Doc: Setup and options

const uri = 'http://ip_address:port_number/.../graphql';

但是尝试将发布请求发送到远程服务器时出现以下错误:

POST http://localhost:4200/ 404 (Not Found)
scheduleTask    @   zone-evergreen.js:2845
scheduleTask    @   zone-evergreen.js:385
...

看起来像我在graphql.module.ts中设置的uri无效。有什么建议吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

我做了一些尝试和错误后发现,如果我在指定uri时将单引号更改为双引号,问题就消失了。

const uri = "http://ip_address:port_number/.../graphql";

希望它可以帮助遇到相同问题的其他人。