这是网络方法定义:
[HttpPost]
public FileResult GenerateReport(string Id) {
//............Code .................//
return File(response.ReportContents, "application/pdf");
}
这是我对 Web 方法的 jQuery ajax 调用:
$(".ValuationReport").bind('click', function () {
$.ajax({
url: "https://localhost.com/Report/GenerateReport
type: "POST",
data: { Id: "00AFCA2F-6809-4FF4-BA32-125EAEBB1321" },
success: function (data) {
},
error: function () {
alert("error");
}
});
});
请帮我。