element获取到后台的数据(ajax)

一.后台代码

List list = uBiz.getAll();
JSONArray json = new JSONArray();
json = json.fromObject(list);
response.getWriter().println(json);

二.前台代码

$.ajax({
url:"/Element/data",
dataType:"json",
error:function(){
},
success:function(data){
new Vue({
     el: '#app',
     data: function() {
     return {
     tableData:data
     }
     }
   })
}
}); 

你可能感兴趣的:(element)