在我正在进行的项目中,我们有一个非常特别的报告,绝对必须作为Word文档出现。昨天,我能够使用OpenXML让它在我的本地机器上工作。一切都很好,直到我把它提交到Dev环境。
在服务器上,我们有一个项目根目录(MyProject/Content/
)的内容目录,其中包含模板文件template.dotx
。以下是我们用它做的事情:
控制器:
[HasAccess]
public FileContentResult SpecialReport([FromUri] string arg)
{
// Prep Report...
string templatePath = Server.MapPath(Url.Content("~/Content/Template.dotx"));
var report = new SpecialReport(templatePath);
// Fill out Report...
var models = SomeRepository.GetSomeDataPoints(arg);
report.RunReport(models);
byte[] reportBytes = report.Export();
// Prep Response...
Response.ContentType = "application/msword";
Response.AddHeader("content-disposition", "inline;filename=SpecialReport.doc");
Response.Buffer = true;
Response.Clear();
Response.OutputStream.Write(reportBytes, 0, reportBytes.Length);
Response.OutputStream.Flush();
Response.End();
return new FileContentResult(reportBytes, "application/msword");
}
特殊报告类:
using System;
using System.IO;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using DocumentFormat.OpenXml.Packaging;
namespace MyWebProject.Web
{
public class SpecialReport
{
#region Variables / Properties
private readonly string _templatePath = string.Empty;
public MemoryStream ReportStream;
#endregion Variables / Properties
#region Constructor
public SpecialReport(string templatePath)
{
_templatePath = templatePath;
}
#endregion Constructor
#region Methods
public void RunReport(IList<someModel> models)
{
ReportStream = new MemoryStream();
using(fs = File.OpenRead(_templatePath))
{
fs.CopyTo(ReportStream);
ReportStream.Seek(0x00000000, SeekOrigin.Begin);
fs.Close();
}
using (WordprocessingDocument pkgDoc = WordprocessingDocument.Open(ReportStream, true))
{
// Set basic properties of the document...
pkgDoc.PackageProperties.Creator = "My Web App";
pkgDoc.PackageProperties.Created = DateTime.Now;
pkgDoc.PackageProperties.Title = "Special Report";
pkgDoc.PackageProperties.ContentType = "application/msword";
// Read the full document text, in prep for editing...
string docText;
using (StreamReader sr = new StreamReader(pkgDoc.MainDocumentPart.GetStream()))
{
docText = sr.ReadToEnd();
sr.Close();
}
// Replace the recipient.
// Source: https://msdn.microsoft.com/en-us/library/office/bb508261.aspx
Regex recipientRegex = new Regex("«Recipient»");
docText = recipientRegex.Replace(docText, models[0].EmployeeDisplayName);
// Write other things to the document by replacing
// special text with what needs to be replaced.
// Write the modified document to the stream.
using (StreamWriter sw = new StreamWriter(pkgDoc.MainDocumentPart.GetStream(FileMode.Create)))
{
sw.Write(docText);
sw.Close();
}
// Close the unmanaged resource!
pkgDoc.Close();
}
}
public byte[] Export()
{
return ReportStream.ToArray();
}
#endregion Methods
}
}
我们的控制器方法旋转了SpecialReport
类的新实例,指向模板。之后,我们获得了一组用于生成报告的模型,然后将模板复制到新的MemoryStream
。我们在文档文本中查找特殊关键字(它们通常以那些奇怪的双V形开头),并在必要时替换它们。然后我们将文档文本写回(克隆!)内存流。然后,我们构建HTTP响应,并将其传递回客户端。
应该发生什么,是用户在他们的前端做了什么,导致生成文档。生成的文档包含应该使用的任何数据。当代码在本地运行时会发生这种情况。
实际发生的是,在我们的Dev环境中,没有生成替换。 «Recipient»关键字未被第一个模型中的属性替换(存储库方法始终返回至少一个模型。)
问题:鉴于上述代码,为什么在本地运行我的特殊报告时,生成的Word文档会替换所有特殊关键字,但是当我运行时在我的开发环境中完全相同的代码,没有替换特殊的关键字?
答案 0 :(得分:2)
PDF没有生成的原因是因为我需要提交我的Controller更改;事实证明我实际上在我的本地和开发环境之间使用相同的代码。
每个人的课程:那个&#34;排除的变化&#34;在Visual Studio中列出?要小心注意它,确保其中的东西不需要被推高。
我现在要在忏悔看古墓丽影(2001)之前,反复敲打附近的立方体。我觉得真的哑巴。