无法加载资源:服务器响应状态为500(内部服务器错误)。仅在服务器中我得到

时间:2015-09-03 07:20:12

标签: jquery

下面是我的代码,调用哪个处理程序。如果我试着打电话就是扔错误。

$.ajaxFileUpload({
    url: '../HttpHandler/AjaxFileUploader.ashx', //handler
    secureuri: false,
    fileElementId: id,
    dataType: 'json',
    data: { name: 'logan', id: 'id' },
    responseType: 'json',
    success: function (data, status) {
        if (typeof (data.error) != 'undefined') {
            if (data.error != '') {
                alert(id)
                alert(data.error);
            } else {
                alert("File Uploaded Successfully");
            }
        }
    },
    error: function (data, status, e) {
        alert(e);
    }
});

0 个答案:

没有答案