复制代码 代码如下:
$("#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();
}
新闻热点
疑难解答
图片精选