AJAX调用异步任务<string>成功命中方法但返回失败</string>

时间:2015-02-05 11:00:02

标签: c# jquery ajax async-await

我有一个MVC控制器(不是api控制器)[HttpPost]方法public async Task<string> PostDocument(),我正在从客户端进行ajax调用。该方法正在对[HttpPost]方法PostDocument(DocRepoViewModel docRepo)进行另一次API调用。以下是我的代码:

public async Task<string> PostAdminUploadData()
{
    HttpResponseMessage response = null;
    //set the parameter docRepo (a complex object)
    try {
        using (var client = new HttpClient())
        {
            string uri = documentRepositoryApiUrl + Constants.PostDoc;
            client.BaseAddress = new Uri(documentRepositoryApiUrl);
            client.DefaultRequestHeaders.Accept.Clear();
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
            response = await client.PostAsJsonAsync(Constants.PostDoc, docRepo); //docRepo parameter for API method
        }
    }
    catch (Exception ex){}

    return (await response.Content.ReadAsAsync<string>());
}

现在在上面的代码中response = await client.PostAsJsonAsync(Constants.PostDoc, docRepo);代码片段将success返回给响应var(因为它按照我的预期做了)但是当上面的方法响应时,响应总是被error:捕获在ajax吼叫我的阿贾克斯:

$.ajax({
    url: url,
    type: 'Post',
    data: data,
    cache: false,
    dataType: 'json',
    async: true,
    contentType: false,
    processData: false,
    success: function (data) {
        alert("pass");
    },
    error: function (data) {
        alert("field"); //always failed
    }
});

c#没有异常抛出。请帮我解决问题

1 个答案:

答案 0 :(得分:4)

我遇到了类似的问题。首先,更改您的ajax请求,以便删除dataType并指定contentType:

// dataType: "json",
contentType: "application/json",

然后,尝试将操作的返回类型更改为Task<ActionResult>,并使用Controller上的常用方法之一,例如:

return Json(/* valid json string content */) 

return Content(/* read content as a string here */)

原因是WebApi控制器获取了一个序列化层,将结果转换为客户端请求的格式。相反,MVC控制器需要调用一种方法,该方法将某种动作结果(通常是视图或类似的东西)返回给视图引擎......

虽然我试图返回一个特定的模型,但我在JavaScript端收到的只是该对象Type的完全限定名称。

另一种选择可能是用[AcceptAjax]属性或类似的东西来装饰你的动作,我相信这允许该动作回复ajax请求。