• <menu id="w2i4a"></menu>
  • logo ActiveReports使用教程2020

    文檔首頁(yè)>>ActiveReports使用教程2020>>ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能


    ActiveReports 是一款專注于 .NET 平臺(tái)的報(bào)表控件,全面滿足 HTML5、WinForm、ASP.NET、.NET Core、WPF 等平臺(tái)下的中國(guó)式復(fù)雜報(bào)表設(shè)計(jì)和跨平臺(tái)報(bào)表開發(fā)需求,作為專業(yè)的報(bào)表工具為全球超過(guò) 300,000 名開發(fā)者提供全面的報(bào)表解決方案。

    點(diǎn)擊下載ActiveReports正式版

    用戶使用 ActiveReports 想實(shí)現(xiàn) .Net Core Web 網(wǎng)頁(yè)中直接打開報(bào)表導(dǎo)出的PDF ,Excel或其他導(dǎo)出文件。

    在 ASP.Net 中可以使用 HttpHandlers 處理這類問(wèn)題,但是在.Net Core 平臺(tái)中已經(jīng)丟棄HttpHandlers  和 HttpModules。所以開發(fā)者可以使用ASP.NET Core 中間件來(lái)實(shí)現(xiàn)此功能。本文就來(lái)分享如何實(shí)現(xiàn)此功能。

    以下是示例圖片:展示了各車型2019的型號(hào)列表。那標(biāo)題中的 Tesla 品牌和 2019 就是報(bào)表的參數(shù),當(dāng)我們直接輸入 在瀏覽器中輸入帶年份和品牌名的參數(shù)值就可以直接打開該報(bào)表生成的PDF。如 https:///cars/tesla/2019;https:///cars/honda/2014

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    操作步驟:

    1、在VS2019 新建空的 ASP.Net Core Web應(yīng)用

    且注意取消選中為HTTP配置 選項(xiàng)

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    2、添加 GrapeCity.ActiveReports.Export.Pdf Nuget 包

    在瀏覽輸入:grapecity.activereports.export.pdf

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    3、設(shè)置報(bào)表

    (1)并設(shè)置報(bào)表生成操作為內(nèi)嵌資源。

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    (2)為報(bào)表添加報(bào)表參數(shù)mark,year用于接收URL 傳遞的參數(shù)值

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    (3)為報(bào)表添加數(shù)據(jù)源,后添加數(shù)據(jù)集,當(dāng)字段生成成功后,修改數(shù)據(jù)源連接字符串如下:

    注意在數(shù)據(jù)源鏈接字串中拼接了報(bào)表參數(shù),用于動(dòng)態(tài)獲取數(shù)據(jù)。

    ="xmldoc=https://vpic.nhtsa.dot.gov/api/vehicles/getmodelsformakeyear/make/"& [@make] & "/modelyear/" & [@year] &"?format=xml"

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    4、在Starup.cs 中添加以下方法:

       internalSystem.IO.Stream GeneratePDF(string make,int year)
           {
                using (var reportStream = typeof(Startup).Assembly.GetManifestResourceStream("WebApplication22.RdlReport.rdlx"))
                using (var reader = new System.IO.StreamReader(reportStream))
                {
                    var rpt = new GrapeCity.ActiveReports.PageReport(reader);
                    rpt.Document.Parameters["make"].CurrentValue =make;
                    rpt.Document.Parameters["year"].CurrentValue =year;
                    var pdfRe = newGrapeCity.ActiveReports.Export.Pdf.Page.PdfRenderingExtension();
                    var output = newGrapeCity.ActiveReports.Rendering.IO.MemoryStreamProvider();
                   rpt.Document.Render(pdfRe,output);
                    return output.GetPrimaryStream().OpenStream();
                
                
                }
          
           }

    5、配置 URL 映射

    因?yàn)锳SP.NET Core 路由的配置是非常靈活的。因?yàn)槲覀兘o的數(shù)據(jù)基本就在可選范圍內(nèi),如車輛品牌就是:Honda, Tesla 及Mercedes; 年份也是2000-2020年,所以配置路由要用正則來(lái)做判斷后限制:

    /cars/{make:regex(^(honda|mecedes|tesla)$)}/{year:range(2000,2020)}

    路由映射配置完成后就可以調(diào)用GeneratePDF方法:

    app.UseEndpoints(endpoints =>
               {
                   endpoints.MapGet("/cars/{make:regex(^(honda|mercedes|tesla)$)}/{year:range(2000,2020)}",async context =>
                    {
                        try
                        {
                            var year =int.Parse(context.Request.RouteValues["year"].ToString());
                            var make =context.Request.RouteValues["make"].ToString();
                            var stream =GeneratePDF(make, year);
                           context.Response.ContentType = "application/pdf";
                           context.Response.Headers.Add("content-disposition",$"inline; filename={make}-{year}.pdf");
                            awaitstream.CopyToAsync(context.Response.Body);
                        }
                        catch(Exception ex)
                        {
                            awaitcontext.Response.WriteAsync(ex.ToString());
                        }
                    });

    6、運(yùn)行

    運(yùn)行就可以看到結(jié)果,注意如果URL 里面不帶汽車品牌和年份,就會(huì)報(bào)404錯(cuò)誤。

    在瀏覽器中輸入鏈接:

    https:///cars/Honda/1999

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    ActiveReports使用教程:如何在.Net Core 平臺(tái)中實(shí)現(xiàn) HTTP Handlers 功能

    本教程內(nèi)容到這里就結(jié)束了,希望對(duì)您有所幫助!感興趣的朋友可以下載ActiveReports試用版免費(fèi)體驗(yàn),或者關(guān)注慧都網(wǎng)了解更多產(chǎn)品資訊~

    相關(guān)內(nèi)容推薦:

    ActiveReports使用教程:如何在Winform項(xiàng)目集成ActiveReports?
    ActiveReports使用教程:如何在MVC中使用ActiveReports
    ActiveReports使用教程:如何在Asp.net 中集成 ActiveReports
    ActiveReports使用教程:如何借助參數(shù)報(bào)表設(shè)置下拉框和數(shù)據(jù)過(guò)濾


    想要購(gòu)買ActiveReports正版授權(quán),或了解更多產(chǎn)品信息請(qǐng)點(diǎn)擊【咨詢?cè)诰€客服】


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();