我想使用http客户端类来调用一个api控制器方法,而PostAsync方法抛出了一个Aggregate Exception。我尝试编写一个调用 PostAsync 的异步方法并尝试使用 ContinueWith 方法,但它们都没有工作。这是代码:
class Program
{
private const string apiPath = @"http://localhost:51140";
private const string param = "/Home/savedocumenttoPath?folderPath=string";
static void Main(string[] args)
{
HttpClient client = new HttpClient();
client.BaseAddress = new Uri(apiPath);
// Add an Accept header for JSON format.
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
HttpResponseMessage response = getBack(client);
Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);
client.Dispose();
Console.ReadLine();
}
public static HttpResponseMessage getBack(HttpClient client)
{
return client.PostAsync(client.BaseAddress + param, null).GetAwaiter().GetResult();
}
}
这是我要调用的控制器:(我尝试了 JsonResult 但这也不起作用)
[HttpPost]
public ActionResult saveDocumentToPath(string folderPath)
{
try
{
if (string.IsNullOrWhiteSpace(folderPath)) throw new NullReferenceException("Invalid Folder!");
var fullPath = folderPath + "\\";
if (!System.IO.Directory.Exists(fullPath))
{
return new HttpStatusCodeResult(HttpStatusCode.OK, "The specified directory not exists: \n" + fullPath);
}
var fileName = "ProjectList_Excel_" + DateTime.Now.Year + DateTime.Now.Month + DateTime.Now.Day;
var filePathName = fullPath + fileName;
if (System.IO.File.Exists(filePathName))
{
return new HttpStatusCodeResult(HttpStatusCode.OK, "The specified file already exists in the folder: \n" + fileName);
}
System.IO.File.WriteAllBytes(filePathName, BL.ExcelExport.GetProjectListExcel());
return new HttpStatusCodeResult(HttpStatusCode.OK, "File Exported successfully!");
}
catch (Exception e)
{
return new HttpStatusCodeResult(HttpStatusCode.OK, "Error occured while saving the file" + e.Message);
}
}