Доброго времени суток. Случилось так, что пришлось работать с незнакомым мне JS. Есть код, который собирает ссылку типа строка для апи погоды (apixu.com). хотелось бы узнать, как можно устроить debug данной функции, без залива её на сервер каждый раз через nodeJS. При запуске функции через nodeJS функция выполняется и ничего не происходит.
Собственно, пример кода:
exports.RussianWeather = (req, res) => {
// Get the city and date from the request
let city = req.body.result.parameters['geo-city']; // city is a required parametr
// Get the date for the weather forecast (if present)
let date = '';
if (req.body.result.parameters['date']) {
date = req.body.result.parameters['date'];
}
// Call the weather API
callWeatherApi(city, date).then((output) => {
// Return the results of the weather API to API.AI
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ 'speech': output, 'displayText': output }));
}).catch((error) => {
// If there is an error let the user know
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ 'speech': error, 'displayText': error }));
});
};
Функция:
exports.currentWeather = function currentWeather(query, callback, errcallback){
options.path = '/v1/current.json?key=' + apiKey + '&q=' + query + '&lang=ru';
http.request(options, function(res) {
res.setEncoding('utf8');
var data = '';
res.on('data', function (chunk) {
data += chunk;
});
res.on('end', function (chunk) {
callback(data);
});
}).on('error', function(err) {
// handle errors with the request itself
errcallback(err);
}).end();
}
Функция парса:
// parsing function
exports.datepars = function datepars(body){
console.log(body);
//let response = JSON.parse(body); error 'Unexpected end of JSON input'
let location = body['location'];
let forecast = body['forecast']['forecastday'][0];
let current = body['current']['condition'];
let currentConditions = current['condition'];
// Create response
let output = location;
console.log(output);
return output;
Я хочу понять, что возвращается мне в body в функции парса. console.log(body) - динамиться =\
Кофе для программистов: как напиток влияет на продуктивность кодеров?
Рекламные вывески: как привлечь внимание и увеличить продажи
Стратегії та тренди в SMM - Технології, що формують майбутнє сьогодні
Выделенный сервер, что это, для чего нужен и какие характеристики важны?
Современные решения для бизнеса: как облачные и виртуальные технологии меняют рынок
Добавил код отслеживания целей onclick="ga('send', 'event', 'button', 'zakazat1'); return true;" примерно так:
Есть одностраничный лендинг, без роутинга на реактеПри переключении табом меняются блоки
Как сделать,что бы я мог ввести в импут любой ip и мне назад уже возвращались данные с сайта именно о том ip, который я ввел в импутСпасибо