0
我在Express.js上連接到外部API(GraphQL)時遇到問題。你能給我一些關於這個的好教程嗎?Express.js - 使用GraphQL外部API連接
還有一個問題。我有這樣的錯誤:
有可能與此API的連接?
我在Express.js上連接到外部API(GraphQL)時遇到問題。你能給我一些關於這個的好教程嗎?Express.js - 使用GraphQL外部API連接
還有一個問題。我有這樣的錯誤:
有可能與此API的連接?
嘗試添加以下的中間件到你的NodeJS /快速應用程序(我已經添加了您的方便,一些評論):
// Add headers
app.use(function (req, res, next) {
// Website you wish to allow to connect
res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8888');
// Request methods you wish to allow
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');
// Request headers you wish to allow
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
// Set to true if you need the website to include cookies in the requests sent
// to the API (e.g. in case you use sessions)
res.setHeader('Access-Control-Allow-Credentials', true);
// Pass to next layer of middleware
next();
});
希望幫助!
服務器應該白名單的來電IP地址。查看'CORS' – aeid