Easyui表单提交给webapi没有得到回复结果

时间:2016-09-27 06:17:54

标签: c# asp.net asp.net-web-api asp.net-web-api2 jquery-easyui

function saveUser() {
        $('#fm').form('submit', {
            url: url,
            onSubmit: function () {
                return $(this).form('validate');
            },
            success: function (data) {
                $('#dlg').dialog('close');        
                $('#dg').datagrid('reload');    
            }
        });
    }

我在后端发布到asp.net webapi,我试图返回“application / json”,“text / plain”,“text / html”内容类型,但是当它转到成功函数时,那里始终没有数据返回。当我打开Chrome开发工具时,我可以看到响应就在那里。 enter image description here enter image description here

在WebApi中:

ajaxResult.Result = new { result = "ok" };

return new HttpResponseMessage { Content = new StringContent(JsonConvert.SerializeObject(ajaxResult.Result), System.Text.Encoding.UTF8, "text/plain") };

0 个答案:

没有答案