(一)java 后端
public String getContentAjax(HttpServletResponse response) throws ParseException, IOException {
//获得当前时间
Date date = new Date();
// long startTime = date.getTime();
//获取用户进来时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//要转换的时间格式
String entryTime = sdf.format(date);
Date firstDate = sdf.parse(entryTime); //进入时间格式化
//获取本题题目ID,开始时间
XXXEntity xxxEntity = activityService.getSubject(entryTime);
Gson gson = new Gson();
return gson.toJson(xxxEntity);
}
(二)前端
$.ajax({
url:'/XXXX',
type:'get',
dataType:'json',
async:false,
success:function(datas){
console.log("ajax回传数据"+datas.type);
},
error: function() {
console.log("没有返回值");
}
});