Попытка вернуть объект JSON из приложения Express и Node.Получение пустого объекта - PullRequest
0 голосов
/ 24 сентября 2018

Помогите мне, пожалуйста, я чувствую, что это что-то с res.json ().Это работает, если я позвоню после первого запроса, но не второго.Реальное приложение сейчас довольно простое: оно просто удаляет некоторые пользовательские данные из социальных сетей, таких как Twitter или Instagram, а затем возвращает объект json.Спасибо!

app.get("/", function(req, res) {
  let twitterHandle = req.query.twitter;
  let instagramHandle = req.query.instagram;

  let twitterURL = "https://twitter.com/" + twitterHandle + "?lang=en";
  let instagramURL = "https://instagram.com/" + instagramHandle;

  var json = {};

  console.log(twitterHandle);
  console.log(instagramHandle);

  // The structure of our request call
  // The first parameter is our URL
  // The callback function takes 3 parameters, an error, response status code and the html
  if (twitterHandle != "") {
    request(twitterURL, function(error, response, html) {
      // First we'll check to make sure no errors occurred when making the request
      if (!error) {
        // Next, we'll utilize the cheerio library on the returned html which will essentially give us jQuery functionality
        var $ = cheerio.load(html);

        // Finally, we'll define the variable we're going to capture
        // We'll be using Cheerio's function to single out the necessary information
        // using DOM selectors which are normally found in CSS.
        var twitterFollowers = $(
          "#page-container > div.ProfileCanopy.ProfileCanopy--withNav.ProfileCanopy--large.js-variableHeightTopBar > div > div.ProfileCanopy-navBar.u-boxShadow > div.AppContainer > div > div.Grid-cell.u-size2of3.u-lg-size3of4 > div > div > ul > li.ProfileNav-item.ProfileNav-item--followers > a"
        )
          .text()
          .replace(/\D/g, "");

        var twitterFollowing = $(
          "#page-container > div.ProfileCanopy.ProfileCanopy--withNav.ProfileCanopy--large.js-variableHeightTopBar > div > div.ProfileCanopy-navBar.u-boxShadow > div.AppContainer > div > div.Grid-cell.u-size2of3.u-lg-size3of4 > div > div > ul > li.ProfileNav-item.ProfileNav-item--following > a"
        )
          .text()
          .replace(/\D/g, "");

        // And now, the JSON format we are going to expose

        json[twitterFollowers] = twitterFollowers;
        json[twitterFollowing] = twitterFollowing;

        // Send the JSON as a response to the client
      }
    });
  }
  if (instagramHandle != "") {
    request(instagramURL, function(error, response, html) {
      // First we'll check to make sure no errors occurred when making the request
      if (!error) {
        // Next, we'll utilize the cheerio library on the returned html which will essentially give us jQuery functionality
        var $ = cheerio.load(html);

        // Finally, we'll define the variable we're going to capture
        // We'll be using Cheerio's function to single out the necessary information
        // using DOM selectors which are normally found in CSS.
        var instagramFollowers = "chicken";

        var instagramFollowing = "chicken";

        // And now, the JSON format we are going to expose
        json.instagramFollowers = instagramFollowers;
        json.instagramFollowing = instagramFollowing;

        // Send the JSON as a response to the client
      }
    });
  }
  res.json(json);
});
app.listen(process.env.PORT || 3000);
module.exports = app;

1 Ответ

0 голосов
/ 24 сентября 2018

Javascript является асинхронным, поэтому вы отправляете ответ, прежде чем получите обратный вызов с результатом вызовов на request().Вам необходимо отправить запрос из системы обратного вызова, либо через res.json(), либо через вызов другой функции.

// get the request here
app.get("/", function(req, res) {
  // do some stuff
  if (foo) {
    // make a request
    request(url1, function(err, res, html) {
      // get the callback with the result
      const json = { foo: 'bar' };

      // call the function to send the response inside the callback
      return res.json(json);
    });
  }
  // don't send response here since it will get called before the callback
  // even though it is further down in the code since it's asynchronous.
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...