91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Rotativa在ASP.NET Core MVC中創建PDF的案例

發布時間:2021-02-08 09:37:11 來源:億速云 閱讀:225 作者:小新 欄目:開發技術

這篇文章主要介紹使用Rotativa在ASP.NET Core MVC中創建PDF的案例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

前言

在本文中,我們將學習如何使用Rotativa.AspNetCore工具從ASP.NET Core中的視圖創建PDF。如果您使用ASP.NET MVC,那么Rotativa工具已經可用,我們可以使用它來生成pdf。

創建一個MVC項目,無論您是core或不core,都可以nuget下包.命令如下:

Install-Package Rotativa
#或者
Install-Package Rotativa.AspNetCore

這個工具由意大利人Giorgio Bozio創建。他需要在ASP.NET MVC中生成pdf,并且重復的任務是設置一種方法來創建PDF文檔,用于業務流程或報告,下面廢話不多說,我們開始吧。

在startup.cs類中配置Rotativa.AspNetCore設置

我們在Configure方法內的startup.cs類中添加此設置,以設置要訪問的wkhtmltopdf.exe文件的相對路徑。

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  {
   RotativaConfiguration.Setup(env);
  }

 我們需要在wwwroot中添加Rotativa文件夾,然后放入這兩個exe,我把這兩個文件已經放到了百度云盤。

使用Rotativa在ASP.NET Core MVC中創建PDF的案例

然后我們添加一個Demo控制器,定義一個Get方法,其定義如下,通過ViewAsPdf方法,就可以通過pdf的形式去套住cshtml,也就達到了pdf的效果。

public class DemoController : Controller
 {
  [HttpGet]
  public IActionResult DemoViewAsPdf()
  {
   return new ViewAsPdf("DemoViewAsPdf");
  }
 }

 就現在,我們需要通過控制器去創建一個視圖,然后在視圖中有如下定義:

@{
 ViewData["Title"] = "DemoViewAsPdf";
}
<html>
<head>
 <meta charset="utf-8">
 <title>Demo</title>
</head>
<body>
 <p>Hello AspNetCore!!</p>
</body>
</html>

現在,我們把頁面重定與

http://localhost:55999/Demo/DemoViewAsPdf

使用Rotativa在ASP.NET Core MVC中創建PDF的案例

邊距

除了普通的展示pdf,我們還可以進行操作,例如下載,打印。當然如果寬和高不太滿意,你可以對視圖進行設置,其中有一個類是對視圖進行配置的,其定義如下,有四大配置值。

public class Margins
 {
  [OptionFlag("-B")]
  public int? Bottom;
  [OptionFlag("-L")]
  public int? Left;
  [OptionFlag("-R")]
  public int? Right;
  [OptionFlag("-T")]
  public int? Top;

  public Margins();
  public Margins(int top, int right, int bottom, int left);

  public override string ToString();
 }

在控制器中直接new出它,然后直接return,和上面類似,現在你可以將html中的p標簽添加一些內容,然后看一下效果。

[HttpGet]
  public IActionResult DemoViewAsPdf()
  {
   return new ViewAsPdf("DemoPageMarginsPDF")
   {
    PageMargins = { Left = 20, Bottom = 20, Right = 20, Top = 20 },
   };
  }

 就這樣,我們再次啟動,可見已經有了外邊距!

使用Rotativa在ASP.NET Core MVC中創建PDF的案例

橫向與縱向

它還給我們提供了橫向還是豎向的pdf效果,如以下定義:

[HttpGet]
  public IActionResult DemoViewAsPdf(string Orientation)
  {
   if (Orientation == "Portrait")
   {
    var demoViewPortrait = new ViewAsPdf("DemoViewAsPDF")
    {
     FileName = "Invoice.pdf",
     PageOrientation = Rotativa.AspNetCore.Options.Orientation.Portrait,
    };
    return demoViewPortrait;
   }
   else
   {
    var demoViewLandscape = new ViewAsPdf("DemoViewAsPDF")
    {
     FileName = "Invoice.pdf",
     PageOrientation = Rotativa.AspNetCore.Options.Orientation.Landscape,
    };
    return demoViewLandscape;
   }
  }

通過 http//localhost:60042/demo/DemoOrientationPDF?Orientation=Portrait 或者其它路由進行訪問,你對比以下就可以看到效果。

設置PDF大小

基本上都是A4,枚舉里很多值,自己看~

[HttpGet]
  public IActionResult DemoViewAsPdf(string Orientation)
  {
   return new ViewAsPdf("DemoPageSizePDF")
   {
    PageSize = Rotativa.AspNetCore.Options.Size.A4
   };
  }

小案例

創建一個模型,這是一個非常簡單的模型,定義如下:

public class Customer
 {
  public int CustomerID { get; set; }
  public string Name { get; set; }
  public string Address { get; set; }
  public string Country { get; set; }
  public string City { get; set; }
  public string Phoneno { get; set; }
 }

在控制器中new幾個對象,然后返回pdf。

[HttpGet]
  public IActionResult DemoViewAsPdf()
  {
   List<Customer> customerList = new List<Customer>() {
     new Customer { CustomerID = 1, Address = "Taj Lands Ends 1", City = "Mumbai" , Country ="India", Name ="Sai", Phoneno ="9000000000"},
     new Customer { CustomerID = 2, Address = "Taj Lands Ends 2", City = "Mumbai" , Country ="India", Name ="Ram", Phoneno ="9000000000"},
     new Customer { CustomerID = 3, Address = "Taj Lands Ends 3", City = "Mumbai" , Country ="India", Name ="Sainesh", Phoneno ="9000000000"},
     new Customer { CustomerID = 4, Address = "Taj Lands Ends 4", City = "Mumbai" , Country ="India", Name ="Saineshwar", Phoneno ="9000000000"},
     new Customer { CustomerID = 5, Address = "Taj Lands Ends 5", City = "Mumbai" , Country ="India", Name ="Saibags", Phoneno ="9000000000"}
   };
   return new ViewAsPdf("DemoModelPDF", customerList);
  }

在視圖中,我們只是迭代集合,渲染頁面。

@model List<MvcHtmlToPdf.Models.Customer>
@{
 Layout = null;
}

<!DOCTYPE html>
<html lang="en">
<head>
 <title>Bootstrap Example</title>
 <meta charset="utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
 <div class="container">
  <h3>Customer</h3>
  <p>Customer Details</p>
  <table class="table table-bordered">
   <thead>
    <tr>
     <th>CustomerID</th>
     <th>Name</th>
     <th>Address</th>
     <th>Country</th>
     <th>City</th>
     <th>Phoneno</th>
    </tr>
   </thead>
   <tbody>

    @foreach (var item in Model)
    {
     <tr>
      <td>@item.CustomerID</td>
      <td>@item.Name</td>
      <td>@item.Address</td>
      <td>@item.Country</td>
      <td>@item.City</td>
      <td>@item.Phoneno</td>
     </tr>
    }

   </tbody>
  </table>
 </div>
</body>
</html>

以上是“使用Rotativa在ASP.NET Core MVC中創建PDF的案例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永平县| 南京市| 昭平县| 牡丹江市| 淮阳县| 夹江县| 江永县| 安溪县| 东辽县| 镇巴县| 阳信县| 阿图什市| 隆昌县| 神木县| 镶黄旗| 宁阳县| 天等县| 女性| 河曲县| 金溪县| 邵阳市| 巴南区| 平江县| 海阳市| 兰考县| 闸北区| 南宫市| 清水县| 渝北区| 太仓市| 文山县| 岳西县| 阜平县| 贵阳市| 都昌县| 奇台县| 咸丰县| 斗六市| 嘉祥县| 绵竹市| 城步|