前端ajax规范写法

$.ajax({
    url: "http://1.1.1.1/api/v2/user/inviters", //接口
    type: "post", //GET或POST
    data: JSON.stringify({}), //数据
    headers: {
        'Content-Type': 'application/json'
    },
    //dataType: 'json',    //返回的数据格式:json/xml/html/script/jsonp/text
    success: function(msg) {
        if (msg.data && msg.data.inviters) {
            addFimg(msg.data.inviters);
        }

    }, 
   //回调成功方法
    error: function(xhr, textStatus) {
        console.log(xhr);
        console.log(textStatus)
    }
});

 

编程网络安全

前端必备的Visual Studio Code插件

2023-12-1 18:00:31

JAVA编程

需避免的7个JAVA编码错误

2024-3-21 17:00:54

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
今日签到
有新私信 私信列表
搜索