Ax ios - Как исправить - POST URL net :: ERR_CONNECTION_RESET - PullRequest
0 голосов
/ 06 апреля 2020

Как исправить это сообщение об ошибке?

[xhr.js?b50d:178 POST http://localhost:3000/editor/add net::ERR_CONNECTION_RESET][1]

Он работает и добавляет данные, но я получаю это сообщение об ошибке ...

Мой API выглядит следующим образом:

приложение. js

app.post('/editor/add', function (req, res) {
let articleData; 
let textData;
let article = {
    title: req.body.title,
    content: req.body.content
}

fs.readFile(urlPath, 'utf8', (err, data) => {
    if (err) {
        console.log('readfile => ' + err);
    } else {
        articleData = JSON.parse(data);
        articleData[article.title] = article.content;
        textData = JSON.stringify(articleData, null, 2);

        fs.writeFile(urlPath, textData, 'utf8', (err) => {
            if (err) {
                console.log('write file => ' + err);
            } else {
                console.log('Finished writing');
            }
        });
    }
});

});

И мой метод Ax ios POST выглядит следующим образом.

редактор. vue

submitEditor: function() {
  var self = this;
  self.$axios({
      headers: {
        "Content-Type": "application/json"
      },
      method: "post",
      url: "http://localhost:3000/editor/add",
      data: {
        title: "test5",
        content: self.html
      }
    })
    .then(res => {
      console.log(res);
    })
    .catch(error => {
      if (!error.response) {
        // network error
        this.errorStatus = "Error: Network Error";
      } else {
        this.errorStatus = error.response.data.message;
      }
    });
}

Я использую Vue / cli, я разделяю код моего клиента и код сервера. Они находятся в отдельной папке. Я помещаю Vue / cli в папку моего клиента, а express. js в папку на моем сервере.

Заранее спасибо!

1 Ответ

1 голос
/ 06 апреля 2020

Попробуйте отправить ответ с вашего маршрута:

fs.writeFile(urlPath, textData, 'utf8', (err) => {
    if (err) {
        console.log('write file => ' + err);
    } else {
        console.log('Finished writing');
        res.json({ msg: 'success' }); // send the client something
    }
});
...