码迷,mamicode.com
首页 > Web开发 > 详细

jQuery.ajax 根据不同的Content-Type做出不同的响应

时间:2016-11-03 16:10:20      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:xmlhttp   .net   记录   asp.net   blog   ade   tar   water   handler   

使用H5+ASP.NET General Handler开发项目,使用ajax进行前后端的通讯。有一个场景需求是根据服务器返回的不同数据类型,前端进行不同的响应,这里记录下如何使用$.ajax实现该需求。

$.ajax({
    ‘url‘: ‘GetWatermarkInfo.ashx‘,
    ‘type‘:‘post‘,
    ‘data‘: { ‘bgstyle‘: bgstyle, ‘watermark‘: watermark },
    success: function (data, status, xhr) {
        //使用XMLHttpRequest对象的getResponseHeader方法来获取content-type信息
        var ct = xhr.getResponseHeader("content-type") || "";
        if (ct.indexOf(‘application/json‘) > -1) {
            if (data.Status == ‘error‘) {
                alert(data.Message);
            }
            else if (data.Status == ‘ok‘) {
                $(‘#watermarkImg‘).attr(‘src‘, ‘GenerateWatermark.ashx?bgstyle=‘ + bgstyle + ‘&watermark=‘ + watermark);
            }
            else {
                alert(‘unknown error!‘);
            }
        }
        else {
            alert(‘unexpectecd content-type!‘);
        }
    },
    error: function (message) {
        alert(‘error: ‘ + message);
    }
})

 

参考文章:

Ajax Content Type Handling in jQuery
jQuery.ajax() | jQuery API Documentation

jQuery.ajax 根据不同的Content-Type做出不同的响应

标签:xmlhttp   .net   记录   asp.net   blog   ade   tar   water   handler   

原文地址:http://www.cnblogs.com/Cwj-XFH/p/6026820.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!