vote up 13 vote down star
9

I'm taking my first crack at AJAX with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON that is returned for Date data types. Basically, I'm getting a string back that looks like this:

/Date(1224043200000)/

From a total newbie at JSON - How do I format this to a short date format? Should this be handled somewhere in the jQuery code? I've tried the jQuery.UI.datepicker plugin using $.datepicker.formatDate() wiuth no success.

FYI: Here's the solution I came up with using a combination of the answers here:

function getMismatch(id) {
    $.getJSON("Main.aspx?Callback=GetMismatch",
        { MismatchId: id },
        function(result) {
            $("#AuthMerchId").text(result.AuthorizationMerchantId);
            $("#SttlMerchId").text(result.SettlementMerchantId);
            $("#CreateDate").text(formatJSONDate(Date(result.AppendDts)));
            $("#ExpireDate").text(formatJSONDate(Date(result.ExpiresDts)));
            $("#LastUpdate").text(formatJSONDate(Date(result.LastUpdateDts)));
            $("#LastUpdatedBy").text(result.LastUpdateNt);
            $("#ProcessIn").text(result.ProcessIn);
        }
        );
        return false;
    }

function formatJSONDate(jsonDate){
    var newDate = dateFormat(jsonDate, "mm/dd/yyyy");
    return newDate;

}

This solution got my object from the callback method and displayed the dates on the page properly using the date format library.

flag

I'd upvote this twice if I could.... – Christian Payne Oct 2 at 5:52

12 Answers

vote up 8 vote down check

You can use this to get a date from json:

var date = eval(jsonDate.replace(/\/Date\((\d+)\)\//gi, "new Date($1)"));

and then you can use JavaScript Date Format script (1.2 KB when minified and gzipped) to display it as you want.

link|flag
Thanks for the reference to the library. I was able to use this to get my short date format. – Mark Struzinski Oct 16 '08 at 13:24
I think there is something wrong in that line of JS. The last two slashes act as comments. I don't know regexp enough to fix it. – orandov Jul 21 at 19:08
There's nothing wrong with the line, the sequence is \// . First slash is escaped so it does not count like a comment. It's your editor tricking you, the line will work fine. – legenden Aug 27 at 15:19
-1 for the use of eval. – pst Oct 30 at 4:37
vote up 2 vote down

There is no built in date type in JSON. This looks like the number of seconds / milliseconds from some epoch. If you know the epoch you can create the date by adding on the right amount of time.

link|flag
vote up 5 vote down

if you say in javascript;

var thedate = Date(1224043200000);
alert(thedate);

you will see that it's the correct date and you can use that anywhere in javascript with any framework

link|flag
vote up 1 vote down

Your JSON should probably be returning an object of some sort (well, a string representation thereof).

"{ myDate : Date(1224043200000) }"

Using jQuery, you can access your data object this way:

$.get(
    "myJSONFile.php",
    function (data) {
        // data.myDate will be a date object.

        // to show in a short date format (eg: dd/mm/yyyy)
        alert (
            data.myDate.getDate() + "/"
            + (data.myDate.getMonth() + 1) + "/"
            + data.myDate.getFullYear()
        ); // alerts: "15/10/2008"
    }
);
link|flag
vote up 0 vote down

Check up the Date ISO standard; kind of like this; "yyyy.MM.ddThh:mm"

becomes; 2008.11.20T22:18

link|flag
vote up 4 vote down

Here's a good explanation of why Microsoft chose this format to represent JSON dates in ASP.NET:

http://weblogs.asp.net/bleroy/archive/2008/01/18/dates-and-json.aspx

link|flag
vote up 0 vote down

Hi !

I attempted to "port" tips from here to convert the json format, the MS-WCF services return for dates, like:

"\/Date(1245108047000+0200)\/"

But nothing works. Any more ideas??

br--mabra

link|flag
vote up 0 vote down

var newDate = dateFormat(jsonDate, "mm/dd/yyyy");

are there any other option without using JQuery Libraries...?

Regards BK

link|flag
vote up 1 vote down

I ended up adding the " characters into Panos's regex to get rid of the ones generated by microsoft serializer for when writing objects into inline script:

So if you have a property in your C# code behind that's something like

protected string JsonObject { get { return jsSerialiser.Serialize(_myObject); }}

and in your aspx you have

<script type="text/javascript">
 var myObject = '<%= JsonObject %>';
</script>

you'd get something like

var myObject = '{"StartDate":"\/Date(1255131630400)\/"}';

Notice the double quotes.

To get this into a form that eval will correctly deserialize I used:

myObject = myObject.replace(/"\/Date\((\d+)\)\/"/g, 'new Date($1)');

I use Prototype and to use it I added

String.prototype.evalJSONWithDates = function() {
 var jsonWithDates = this.replace(/"\/Date\((\d+)\)\/"/g, 'new Date($1)');
 return jsonWithDates.evalJSON(true);
}
link|flag
vote up 0 vote down

A late post, but for those who searched this post.

Imagine this:

    [Authorize(Roles = "Administrator")]
    [Authorize(Roles = "Director")]
    [Authorize(Roles = "Human Resources")]
    [HttpGet]
    public ActionResult GetUserData(string UserIdGuidKey)
    {
        if (UserIdGuidKey!= null)
        {
            var guidUserId = new Guid(UserIdGuidKey);
            var memuser = Membership.GetUser(guidUserId);
            var profileuser = Profile.GetUserProfile(memuser.UserName);
            var list = new {
                              UserName = memuser.UserName,
                              Email = memuser.Email ,
                              IsApproved = memuser.IsApproved.ToString() ,
                              IsLockedOut = memuser.IsLockedOut.ToString() ,
                              LastLockoutDate = memuser.LastLockoutDate.ToString() ,
                              CreationDate = memuser.CreationDate.ToString() ,
                              LastLoginDate = memuser.LastLoginDate.ToString() ,
                              LastActivityDate = memuser.LastActivityDate.ToString() ,
                              LastPasswordChangedDate = memuser.LastPasswordChangedDate.ToString() ,
                              IsOnline = memuser.IsOnline.ToString() ,
                              FirstName = profileuser.FirstName ,
                              LastName = profileuser.LastName ,
                              NickName = profileuser.NickName ,
                              BirthDate = profileuser.BirthDate.ToString() ,
            };
            return Json(list, JsonRequestBehavior.AllowGet);
        }
        return Redirect("Index");
    }

As you can see, I'm utilizing C# 3.0's feature for creating the "Auto" Generics. It's a bit lazy, but I like it and it works. Just a note: Profile is a custom class I've created for my web application project.

link|flag
vote up 0 vote down

What about the reverse? Format Javascript date into c# Date

link|flag
vote up 1 vote down

Don't over-think this. Like we've done for decades, pass a numeric offset from the de-facto standard epoch of 1 Jan 70 Midnight GMT/UTC/&c in # of seconds (or milliseconds) since this epoch. JavaScript likes it, Java likes it, C likes it, the Internet likes it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.