在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 ASP.NET MVC 中创建通用文档查看器的文章。
我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 GroupDocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PDF、Word、Excel、PowerPoint、Visio、CAD、Outlook 和许多其他流行的格式。
为什么选择 .NET Core?
.NET Core 是 Microsoft 对 .NET 生态系统的重要补充。它使开发跨平台应用程序成为可能,而无需开发人员进行任何额外的努力。这就是我选择 .NET Core 作为目标框架的原因。
在 ASP.NET Core 中创建文档查看器的步骤
1. 打开 Visual Studio 并启动一个新项目。
2. 从项目类型中选择 .NET Core,从模板中选择 ASP.NET Core Web Application。
3. 选择 Web Application (Model-View-Controller) 并点击 Ok 按钮。
4. 从 NuGet 安装 GroupDocs.Viewer。
5. 打开 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>
6. 打开 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 });
}
}
7. 在 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);
}
8. 构建文档查看器应用程序并在您喜欢的浏览器中运行。
下载 ASP.NET MVC 文档查看器
ASP.NET MVC 文档查看器的源代码是开源的,可供下载。