首页 > Web开发 > 详细

ajax简单封装

时间:2021-08-12 23:30:45      阅读:35      评论:0      收藏:0      [点我收藏+]
function ajax(type, url, data, isJson) {
    return new Promise((resolve, reject) => {
        $.ajax({
            type: type,
            url: url,
            dataType: ‘json‘,
            data: data,
            beforSend: function () {
            },
            error: function (err) {
                reject(err.data)
            },
            success: function (data) {
                resolve(data)
            }
        });
    })
}

调用方法

ajax(‘post‘, url, {type: ‘1‘}).then(res => {
    console.log(‘请求成功‘)
}).catch(() => {
    console.log(‘请求失败‘)
})

ajax简单封装

原文:https://www.cnblogs.com/nixu/p/15134961.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!