I found this code: angular function to get date and time
I tested it and it works cool. But I need to take that date and send it to the bank, along with other data. How can I do this?
My code looks like this:
$scope.enviarMsg = function (mensagem) {
function Time($scope){
$scope.date = new Date();
}
var dte = Time($scope);
var enviaMsg = {
mensagem: mensagem,
idUsuario: $window.localStorage.getItem('idUsuario'),
idCep: $window.localStorage.getItem('idCep'),
nome: $window.localStorage.getItem('nome'),
date: dte
}
$http.post("http://www.vigilantescomunitarios.com/www/php/enviaMsgLogra.php", enviaMsg).success(function (data){
console.log(data);
pegaMsgsLogra();
$scope.mensagem = {
msg: ""
}
});
}