从webservice解析日期

我从web服务获取日期,他们看起来像这样:

/Date(1310187160270+1200)/

我将如何去将它转换为javascript中的日期对象?

我搜索了一下,找不到一个合适的答案 - 这可能部分是由于我不确定这种类型的日期对象被称为什么 - 所以如果有人能够说明这一点,将不胜感激。


var date = new Date(1310187160270+1200); 
console.log(date)

回报

Sat Jul 09 2011 06:52:41 GMT + 0200(南非标准时间)

如果你需要去掉问题:

var returnVariable = "/Date(1346713200000+0100)/";
var d = new Date(parseFloat(returnVariable.replace("/Date(", "").replace(")/", ""))); 

由于之前的回答不处理时区偏移量,因此我会引用我的版本:

function fromDateString(str) {
    var res = str.match(//Date((d+)(?:([+-])(dd)(dd))?)//);
    if (res == null)
        return new Date(NaN); // or something that indicates it was not a DateString
    var time = parseInt(res[1], 10);
    if (res[2] && res[3] && res[4]) {
        var dir = res[2] == "+" ? -1 : 1,
            h = parseInt(res[3], 10),
            m = parseInt(res[4], 10);
        time += dir * (h*60+m) * 60000;
    }
    return new Date(time);
}

正确的结果是Fri Jul 08 2011 18:52:40 GMT+0200 ,或Fri, 08 Jul 2011 16:52:40 GMT

链接地址: http://www.djcxy.com/p/46649.html

上一篇: Parsing Date from webservice

下一篇: REST Web service android client