消息“:”无效的Web服务调用,缺少参数值:\ u0027fff \ u0027。“,”StackTrace

时间:2017-03-15 01:51:36

标签: json

我有一个js file.a希望使用ajax将值作为json传递给我的代码隐藏但是我收到此错误:

enter image description here

  

消息":"无效的Web服务调用,缺少参数值:   \ u0027fff \ u0027""堆栈跟踪

我的javascript代码是:

$('#Button2').click(function() {

    var edata = {};
    edata.Eid = $('#txteid').val();
    edata.Ename = $('#txtname').val();
    edata.Dob = $('#txtdob').val();
    edata.slary = $('#txtsalary').val();

    $.ajax({
        url: "Call1.asmx/SaveEmployee",

        method: "post",
        contentType: "application/json;charset=utf-8",
        data: '{Emp:' + JSON.stringify(edata) + '}',
        dataType: "json",
        success: function() {},
        error: function(x, e) {
            alert('error is ' + e);

            alert(x.responseText);
            alert(x.status);
        }
    });


});

0 个答案:

没有答案