欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ajax接收Date类型的数据时会把数据转换为时间戳

程序员文章站 2023-11-13 17:48:46
复制代码 代码如下: $("#test").click(function(e) { $.get( "/mgr/datacleaning/test", function(da...

复制代码 代码如下:

$("#test").click(function(e) {
$.get(
"/mgr/datacleaning/test",
function(data) {
console.log(data + " from $.get()");
}
);

var xhr = new xmlhttprequest();
xhr.open("get", "/mgr/datacleaning/test");
xhr.onreadystatechange= function(e) {
if (xhr.readystate == 4 && xhr.status == 200) {
console.log(xhr.responsetext + " from xhr");
}
};
xhr.send(null);
});

复制代码 代码如下:

@responsebody
@requestmapping(value="/test")
public date test() {
return new date();
}

控制台输出:

1400032471285 from $.get()
1400032471294 from xhr

by the way:

$.get()的请求头只比xhr的请求头多了一个:
x-requested-with:
xmlhttprequest