0

在 Azure 上运行的应用服务中,我需要将 word/docx 文档中的邮件合并字段替换为内容。据我了解,互操作不能使用,因为它需要安装 word。

那么如何在 ac# 应用服务中替换 Azure 上的邮件合并字段?也许可以为此使用 OpenXML SDK?但是怎么做?

[更新] OpenXML 工作,我创建了以下帮助类来替换邮件合并内容:

public static void DocXReplaceMergeFields(Stream docStream, Dictionary<string, string> placeholder)
{
  using (var docXml = WordprocessingDocument.Open(docStream, true))
  {
    //docXml.ChangeDocumentType(WordprocessingDocumentType.Document);

    foreach (var run in docXml.MainDocumentPart.Document.Descendants<Run>())
    {
      foreach (var text in run.Descendants<Text>().Where(a => a.Text.StartsWith("«") && a.Text.EndsWith("»")))
      {
        var propertyName = text.Text.Substring(1, text.Text.Length - 2);
        if (placeholder.TryGetValue(propertyName, out var propertyValue))
          text.Text = propertyValue;
      }
    }

    var settingsPart = docXml.MainDocumentPart.GetPartsOfType<DocumentSettingsPart>().First();
    var oxeSettings = settingsPart.Settings.Where(a => a.LocalName == "mailMerge").FirstOrDefault();
    if (oxeSettings != null)
    {
      settingsPart.Settings.RemoveChild(oxeSettings);
      settingsPart.Settings.Save();
    }
    docXml.MainDocumentPart.Document.Save();
  }
}
4

1 回答 1

1

您可以尝试使用 Open XML SDK:

https://docs.microsoft.com/en-us/office/open-xml/word-processing

如果由于某种原因这不起作用,请尝试使用 Azure 逻辑应用程序执行相同操作:

https://medium.com/plumsail/create-complex-excel-and-word-documents-from-templates-in-microsoft-flow-azure-logic-apps-and-794334e59f0f

于 2020-04-09T14:00:25.560 回答