const a = `17.11.1995`.split('.');
const date = new Date(a[2], a[1] - 1, a[0]); // equal new Date(1995, 11, 17)
setTimeout(function() {
getTimer(dataNew);
}, 1000);
app.get('/users', (req, res) => {
findOne().then((result) => {
res.send(result);
})
.catch((e) => {
res.status(500, {
error: e
});
});
});
const findOne = (queryObj) => {
return new Promise((resolve, reject) => {
db.collection('users').find(
queryObj
).toArray((err, docs) => {
if (!err) {
resolve(docs);
} else {
reject(err);
};
});
});
};
CURLOPT_FOLLOWLOCATION - TRUE для следования любому заголовку "Location: ", отправленному сервером в своем ответе (учтите, что это происходит рекурсивно, PHP будет следовать за всеми посылаемыми заголовками "Location: ", за исключением случая, когда установлена константа CURLOPT_MAXREDIRS).
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
CTRL + F "get"
// Make a request for a user with a given ID
axios.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
axios.get('/user', {
params: {
ID: 12345
}
})