在線文檔查看器在數字文檔的使用越來越多之後變得流行起來,尤其是在內容管理系統中。這種流行背後的原因是您無需購買或安裝專用軟件程序即可查看各種文檔格式。考慮到文檔查看器的重要性,我想寫一篇關於如何在 ASP.NET MVC 中創建通用文檔查看器的文章。

我們將創建一個面向 [.NET Core](https://en.wikipedia. org/wiki/.NETCore) 框架。對於後端的文檔呈現,我們將使用 GroupDocs.Viewer for .NET API - 一個強大的文檔查看器 API,支持 140 多種文檔類型,包括 PDF 、Word、Excel、PowerPoint, Visio、CAD、Outlook 和許多其他流行格式。

為什麼選擇 .NET 核心?

.NET Core 是 Microsoft 對 .NET 生態系統的重要補充。它使得開發跨平台應用程序成為可能,而無需開發人員進行任何額外的工作。這就是我選擇 .NET Core 作為目標框架的原因。

在 ASP.NET Core 中創建文檔查看器的步驟

  1. 打開 Visual Studio 並開始一個新項目。

  2. 從項目類型中選擇 .NET Core,從模板中選擇 ASP.NET Core Web Application。

  1. 選擇 Web Application (Model-View-Controller) 並單擊 Ok 按鈕。
  1. 從 NuGet 安裝 GroupDocs.Viewer。
  1. 打開 Views/Home/Index.cshtml 文件並將其內容替換為以下內容:
@{
    ViewData["Title"] = "Home Page";
}
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script>
    function ViewDocument(file) {
        $("#loader").fadeIn();
        var data = { FileName: file };
        $.ajax({
            type: "POST",
            url: '/Home/OnPost',
            data: data,
            dataType: "text"
        }).done(function (data) {
            var folderName = file.replace(".", "_");
            $("#content").empty();
            for (var i = 1; i <= data; i++) {
                $("#content").append("<img src='Content/" + folderName + "/page-" + i + ".png'/>");
            }
            $("#loader").fadeOut();
        })
    }
</script>
<script type="text/javascript">
    $(window).load(function() {
        $("#loader").fadeOut(1000);
    });
</script>
<div class="row">
    <div class="col-md-3">
        <div class="sidenav">
            <div id="loader"></div>
            <h2 style="padding-left:15px">Files</h2>
            @if (ViewBag.lstFiles != null)
            {
                @foreach (string file in ViewBag.lstFiles)
                {
                    <a href="#" onclick="ViewDocument('@file')">@file</a>
                }
            }
        </div>
    </div>
    <div class="col-md-9">
        <h2>Preview</h2>
        <div id="content"></div>
    </div>
</div>
  1. 打開Controllers/HomeController.cs,用下面的代碼替換類的內容。
public class HomeController : Controller
{
	private readonly IHostingEnvironment _hostingEnvironment;
	private string projectRootPath;
	private string outputPath;
	private string storagePath;
	List<string> lstFiles; 

	public HomeController(IHostingEnvironment hostingEnvironment)
	{
		_hostingEnvironment = hostingEnvironment;
		projectRootPath = _hostingEnvironment.ContentRootPath;
		outputPath = Path.Combine(projectRootPath, "wwwroot/Content");
		storagePath = Path.Combine(projectRootPath, "storage");
		lstFiles = new List<string>(); 
	}

	public IActionResult Index()
	{
		var files = Directory.GetFiles(storagePath);
		foreach (var file in files)
		{
			lstFiles.Add(Path.GetFileName(file));
		}
		ViewBag.lstFiles = lstFiles; 
		return View();
	}
	[HttpPost]
	public IActionResult OnPost(string FileName)
	{
		int pageCount = 0;
		string imageFilesFolder = Path.Combine(outputPath, Path.GetFileName(FileName).Replace(".", "_"));
		if (!Directory.Exists(imageFilesFolder))
		{
			Directory.CreateDirectory(imageFilesFolder);
		}
		string imageFilesPath = Path.Combine(imageFilesFolder, "page-{0}.png");
		using (Viewer viewer = new Viewer(Path.Combine(storagePath, FileName)))
		{
      //獲取文檔信息
			ViewInfo info = viewer.GetViewInfo(ViewInfoOptions.ForPngView(false));
			pageCount = info.Pages.Count;
      //設置選項並渲染文檔
			PngViewOptions options = new PngViewOptions(imageFilesPath);
			viewer.View(options);
		} 
		return new JsonResult(pageCount);
	} 

	[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
	public IActionResult Error()
	{
		return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
	}
}
  1. 在 wwwroot/css/site.css 文件中添加以下樣式。
.sidenav {
    width: 300px;
    position: fixed;
    z-index: 1;
    left: 0px;
    background: #eee;
    overflow-x: hidden;
    padding: 8px 0;
}
.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 15px;
    color: #2196F3;
    display: block;
}
.sidenav a:hover {
        color: #064579;
    }
.main {
    margin-left: 140px; /* Same width as the sidebar + left position in px */
    font-size: 15px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
        .sidenav a {
            font-size: 20px;
        }
}
#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../images/Loading.gif') 50% 50% no-repeat rgb(249,249,249);
}
  1. 構建文檔查看器應用程序並在您喜歡的瀏覽器中運行。
ASP.NET Core 文件查看器

下載 ASP.NET MVC 文檔查看器

ASP.NET MVC 文檔查看器的源代碼是開源的,可供下載