DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> ajax接收Date類型的數據時會把數據轉換為時間戳
ajax接收Date類型的數據時會把數據轉換為時間戳
編輯:AJAX基礎知識     

復制代碼 代碼如下:
$("#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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved