“[Object] Node JS Вывод” Ответ

[Object] Node JS Вывод

JScopyconsole.log(JSON.stringify(obj, null, 2))
Noob Learner

[Object] Node JS Вывод


var request = require('request');
request('http://ip-api.com/json', function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(response.body);    // Prints the JSON object
    var object = JSON.parse(body);
    console.log(object['country']) // Prints the country value from the JSON object
  }
});

Yucky Yacare

Ответы похожие на “[Object] Node JS Вывод”

Вопросы похожие на “[Object] Node JS Вывод”

Больше похожих ответов на “[Object] Node JS Вывод” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования