Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
331 views
in Technique[技术] by (71.8m points)

javascript - 反应:Axios网络错误(React: Axios Network Error)

This is my first time using axios and I have encountered an error.

(这是我第一次使用axios,遇到错误。)

  axios.get(
    `http://someurl.com/page1?param1=1&param2=${param2_id}`
  )
  .then(function(response) {
    alert();
  })
  .catch(function(error) {
    console.log(error);
  });

With the right url and parameters, when I check network requests I indeed get the right answer from my server, but when I open console I see that it didn't call the callback, but instead it caught an error.

(使用正确的url和参数,当我检查网络请求时,确实可以从服务器中获得正确的答案,但是当我打开控制台时,我看到它没有调用回调,而是捕获了错误。)

Error: Network Error Stack trace: createError@ http://localhost:3000/static/js/bundle.js:2188:15 handleError@ http://localhost:3000/static/js/bundle.js:1717:14

(错误:网络错误堆栈跟踪:createError @ http:// localhost:3000 / static / js / bundle.js:2188:15 handleError @ http:// localhost:3000 / static / js / bundle.js:1717:14)

  ask by Mirakurun translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If Creating an API Using NodeJS(如果使用NodeJS创建API)


Your Express app needs to use CORS (Cross-Origin Resource Sharing).

(您的Express应用程序需要使用CORS(跨源资源共享)。)

Add the following to your server file:

(将以下内容添加到您的服务器文件中:)

 // This should already be declared in your API file var app = express(); // ADD THIS var cors = require('cors'); app.use(cors()); 

For fuller understanding of CORS, please read the Mozilla Documentation on CORS .

(为了更全面地了解CORS,请阅读有关CORSMozilla文档 。)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...