Ember Fastboot无法处理post请求

odopli94  于 2022-09-28  发布在  其他
关注(0)|答案(1)|浏览(195)

在浏览器中访问网站时,我看到以下错误。。
Api既可以在浏览器中工作,也可以在 Postman 中工作,但Ember fastboot无法工作……任何帮助都会非常有用。
FetchError:对https://test.news.bor.doi.test/api/?format=json&type=footer&type=footer-menu的请求失败,原因:getaddrinfo ENOTFOUND test.news.bor.doi。在ClientRequest中测试。(/data/webs/newsdev/frondend/node_modules/node-fetch/lib/index.js:1491:11)。TLSSocket发出(节点:事件:527:28)。TLSSocket上的socketErrorListener(节点:_http_client:454:9)。在processTicksAndRejections(node:internal/process/task_queues:83:21)的emitErrorNT(node:内部/streams/destroy:157:8

ohtdti5x

ohtdti5x1#

当我遇到同样的问题时,对我来说是因为dns服务器设置为localhost,所以我的服务器没有解析任何域名。检查/etc/resolv.conf是否是nameserver localhost,将其更改为nameserver 8.8.8.8

相关问题