gpt4 book ai didi

c# - 通过用户输入或无响应取消方法

转载 作者:行者123 更新时间:2023-11-30 18:24:41 27 4
gpt4 key购买 nike

我正在使用的网站允许用户在用户选择的两个日期之间生成报告。我遇到的问题是,如果用户不小心请求了一个巨大的日期差异(即一年)之间的报告,服务器会承受很大压力,有时可能会导致所有用户崩溃。我要做的是使用某种进度条向用户显示报告将花费多长时间以及取消按钮或检查它们是否仍然存在的按钮。我正在考虑在任务中使用取消 token ,但不确定这是否是我想要的。也在考虑一个全局链表,其中随机数链接到真假,因为用户可以同时打开许多报告。我在下面包含了一些相关代码。我将不胜感激任何帮助或指出正确的方向,谢谢

//从和太旧传递过来的java脚本调用方法genonereport

window.open('genonereport?idd=' + idd + '&fromm=' + 
fromm + '&too=' + too + '&filetype=' + outputValue ,
'_blank');

//genonereport 将值传递给下面包含相关方法的类---report.render 这是我想在用户取消报告或他们离开时取消的方法

     public byte[] genReportBytes(int id, string fromm, string too, string filetype)
{

reportDetails repD = new reportDetails();
repD = getOneReport(id);

LocalReport report = new LocalReport();

if (fromm != null)
repD.ParametersCommandLine = "@startdate=" + fromm;

if (too != null)
repD.ParametersCommandLine += " @enddate=" + too;

string RDLCPath = ConfigurationManager.AppSettings["RDLCPath"];
string ReportOutputPath = ConfigurationManager.AppSettings["ReportOutputPath"];

string RDLCName = repD.RDLCName;
RDLCPath += @"\" + RDLCName;
report.ReportPath = RDLCPath;

string sqlGet = repD.SQLOfReport;

report.DataSources.Add(new ReportDataSource(repD.DatasetName, getReportData(sqlGet, repD.ParametersCommandLine)));

// export to byte array

Warning[] warnings;
string[] streamids;
string mimeType;
string encoding;
string filenameExtension;
string deviceInf = "";
byte[] bytes = new byte[64];
byte[] empty = null;
string extension;
bool Completed;

if (filetype == "pdf")
{
deviceInf = "<DeviceInfo><PageHeight>8.5in</PageHeight><PageWidth>11in</PageWidth><MarginLeft>0in</MarginLeft><MarginRight>0in</MarginRight></DeviceInfo>";
//fileName = ReportOutputPath + @"\" + repD.NameOfOutputPDF + ".PDF";
//Completed = ExecuteWithTimeLimit(TimeSpan.FromMilliseconds(5000), () =>
//{
bytes = report.Render("pdf", deviceInf, out mimeType, out encoding, out filenameExtension,
out streamids, out warnings);
//});

}
else
{
//fileName = ReportOutputPath + @"\" + repD.NameOfOutputPDF + ".XLS";
//Completed = ExecuteWithTimeLimit(TimeSpan.FromMilliseconds(5000), () =>
//{
bytes = report.Render(
"Excel");
//});
}
//if (Completed == true)
//{
return bytes;
//}
//else
//return empty;
}

//我已经走到这一步了,但这只会在一定时间后取消,这对我来说不是很好

public static bool ExecuteWithTimeLimit(TimeSpan timeSpan, Action codeBlock)
{
try
{
Task task = Task.Factory.StartNew(() => codeBlock());
task.Wait(timeSpan);
return task.IsCompleted;
}
catch (AggregateException ae)
{
throw ae.InnerExceptions[0];
}
}

抱歉这个冗长的问题,再次感谢

最佳答案

您至少需要三个网络端点:

  1. 一个生成报告并返回结果
  2. 您的 Javascript 可以定期请求检查进度
  3. 您的浏览器可以请求取消任务的一个

您需要使用某种 ID 在字典中存储每个任务的句柄,以便您可以将 ID 传递到查询 2 和 3。

This article举例说明如何执行此操作。

这并不简单,因此限制用户可以生成的报告的大小可能是首选。

关于c# - 通过用户输入或无响应取消方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30978350/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com