json datetime format in javascript jquery

json datetime format in javascript jquery

Hello everyone,

I'm going to share the code-sample for DateTime format in jquery JSON

In the 1st step, we get the DateTime using javascript, sample code as  given below.

 var createDate = new Date().getTime();


In the 2nd step, we create request body for input-data, sample code as given below.

var requestBody = { 
                                user: { 
                                           Id: 9, 
                                           CreatedDate: '/Date(' + createDate + ')/'
                                        } 
                             }; 

In the 3rd step, we convert to request body to JSON using JSON.stringify()
code sample as given below.

var JSONrequestBody=JSON.stringify(requestBody);

In the 4th step, we write to authenticate to services and call to JSON request.  


    var username = "user";
    var password = "user@123";

    var doAuthenticate = function (uid, pwd) {

        var token = user + ':' + password;
        var hashCode = btoa(token);
        return  'Basic ' + hashCode; 
    };


    $.ajax({

            url: 'https://192.168.2.10/Services/myService.svc/REST/saveUserDetail',
            type: 'POST',
            data: JSONrequestBody,
            beforeSend: function (xhr) {
                xhr.setRequestHeader("Authorization", doAuthenticate(uid, pwd));
            },
            async: runInBackground,
            contentType: 'application/json',
            success: successHandler,
            error: function (jqXHR, textStatus, errorThrown) {
                   $('#msgText').html(jqXHR.responseText);

            }

      });

Example for JSON datetime format in jquery

var  JSONDateTimeFormat= function()
{
    var createDate = new Date().getTime();
    var requestBody = { user: { Id: 9, CreatedDate: '/Date(' + createDate + ')/'} };
    var JSONrequestBody=JSON.stringify(requestBody);

        $.ajax({
            url: 'https://192.168.2.10/Services/myService.svc/REST/saveUserDetail',
            type: 'POST',
            data: JSONrequestBody,
            beforeSend: function (xhr) {
                xhr.setRequestHeader("Authorization", doAuthenticate(uid, pwd));
            },
            async: runInBackground,
            contentType: 'application/json',
            success: successHandler,
            error: function (jqXHR, textStatus, errorThrown) {
                   $('#msgText').html(jqXHR.responseText);

            }
        });
       

       var uid= "user";
       var pwd= "user@123";
       var doAuthenticate = function (uid, pwd)

        {
             var token = user + ':' + password;
             var hashCode = btoa(token);
             return  'Basic ' + hashCode;
       };

};

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^