How can I get the date and time, angled and sent to BD?

0

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: ""
        }

    });
}

Console Print

    
asked by anonymous 16.02.2016 / 18:01

1 answer

2

So it would work:

$scope.enviarMsg = function (mensagem) {
    var enviaMsg = {
        mensagem: mensagem,
        idUsuario: $window.localStorage.getItem('idUsuario'),
        idCep: $window.localStorage.getItem('idCep'),
        nome: $window.localStorage.getItem('nome'),
        date: new Date()
    }

    $http.post("http://www.vigilantescomunitarios.com/www/php/enviaMsgLogra.php", enviaMsg).success(function (data){

        console.log(data);
        pegaMsgsLogra();
        $scope.mensagem = {
          msg: ""
        }

    });
}
    
17.02.2016 / 00:23