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

使用Ajax简单获取数据

程序员文章站 2022-06-22 17:09:21
使用注解@ResponseBody //将方法返回值直接响应给客户端(使用Fastjson)注意在SpringMvc配置文件中配置Fastjson消息转换器举例:前端页面中使用Ajax获取数据并且在前端页面中通过使用table展示用户列表数据$.ajax({url:"/ssm_02_code/getUserList.do",dataType:"json",success:function (result) ......

使用注解@ResponseBody //将方法返回值直接响应给客户端(使用Fastjson)

注意在SpringMvc配置文件中配置Fastjson消息转换器

举例:

前端页面中使用Ajax获取数据并且在前端页面中通过使用table展示用户列表数据

 $.ajax({

            url:"/ssm_02_code/getUserList.do",

            dataType:"json",

            success:function (result) {

                if(result.code==100){

                    //渲染数据

                    renderData_user(result.data);

                }else {

                    $("#info").text("页面访问出错");

                    $("#table_user").remove();

                }

            }

        });

        function renderData_user(data) {

            var template_tr=$("#table_user tr:eq(1)");

            $("#table_user tr:eq(1)").remove();

            for(var i in data){

                var tr =template_tr.clone();

                tr.find("#userCode").text(data[i].userCode);

                tr.find("#userName").text(data[i].userName);

                tr.find("#gender").text(data[i].gender==1?"女":"男");

                tr.find("#age").text(data[i].age);

                tr.find("#phone").text(data[i].phone);

                $("#table_user").append(tr);

            }

        }

本文地址:https://blog.csdn.net/ClearLex/article/details/107290997