前台如何处理后台返回的json数据

Posted 流星雨—杰克

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前台如何处理后台返回的json数据相关的知识,希望对你有一定的参考价值。

后台返回的json数据格式:

{
    "state": true,
    "data": {
        "id": 0,
        "name": "testAjax"\'"sex": null,
        "csny": null,
        "mz": null,
        "byxx": null,
        "sfzh": null,
        "yhtc": null,
        "hjszd": null,
        "jtzz": null,
        "jtlxdh": null,
        "fqxm": null,
        "fqgzdw": null,
        "fqlxdh": null,
        "mqxm": null,
        "mqgzdw": null,
        "mqlxdh": null,
        "szjxbgdpj": null,
        "qmszcp": null,
        "zhszpjjg": null,
        "bz": null,
        "bzy": null,
        "bze": null,
        "xjh": null,
        "img": null,
        "mm": null,
        "remm": null,
        "timeStamp": 0,
        "wordFilePath": null
    },
    "msg": "success"
}

 

前台发的ajax请求:

function tj() {
        $.ajax({
            type : "POST",
            url : "fdzx/ajaxData",
            data: "name=John&location=Boston",
            success : function(data) {
                alert("Data Saved:  state:" + data.state+",name:"+data.data.name+",msg:"+data.msg);
            }
        });
    }

 

效果图:

 

以上是关于前台如何处理后台返回的json数据的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序json数据如何处理?

在片段之间切换时如何处理相机?

从最近清除应用程序时如何处理作为前台运行的服务?

应用未运行时如何处理远程通知

C#/JSON 如何处理从数据库查询返回的 NULL 值? [复制]

如何处理收到推送通知后恢复应用程序的情况