Ajax调用后台数据接口

var param = {
    "args": {
        "key": value
    },
    "bizData": "string",
    "sign": "string",
    "token": "string"
};
$.ajax({
   type: "POST",
    url: "",
    contentType: "application/json", //必须这样写
    dataType:"json",
    data:JSON.stringify(param),
    success: function (msg) {
        console.log("success: " + JSON.stringify(msg));
        if (data.code == '200') {
        } else { 
        } 
    },
    error: function (msg) {
         console.log("error: " + JSON.stringify(msg));
    }
});

你可能感兴趣的:(接口数据)