Word insertOoxml方法返回错误:所有输入都未知

问题描述 投票:3回答:1

我有一个现有的Word加载项解决方案,该解决方案已经运行了很长时间,现在无法将OOXML内容插入到Word文档中。试图打破这种情况我无法在任何情况下使insertOoxml方法工作。

重现:

        await Word.run(async (context) => {
            context.document.getSelection().insertOoxml(theOoxml, 'Start');
            await context.sync();
        });

其中theOoxml可以是任何有效的Ooxml字符串。我一直在使用的参考示例是:

<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
  <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
    <pkg:xmlData>
      <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
        <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml" />
      </Relationships>
    </pkg:xmlData>
  </pkg:part>
  <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
    <pkg:xmlData>
      <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid wp14">
        <w:body>
          <w:p>
            <w:r>
                <w:t>
                    Hey there
                </w:t>
            </w:r>
          </w:p>
        </w:body>
      </w:document>
    </pkg:xmlData>
  </pkg:part>
</pkg:package>

但也尝试过其他参考例:https://docs.microsoft.com/en-us/office/dev/add-ins/word/create-better-add-ins-for-word-with-office-open-xml

结果是:

word-web-16.00.debug.js:11162 Uncaught(in promise)错误:在RequestContext.ClientRequestContext.processRequestExecutorResponseMessage(word-web-16.00.debug。)的新RuntimeError(word-web-16.00.debug.js:11162)中未知。 js:13713)在word-web-16.00.debug.js:13620

在不同的租户,浏览器中试过它,这让我有点疯狂。如果这对您有用,请告诉我您的一般配置/设置。

谢谢。

更新:

为了避免关于XML本身有效性的问题,下面的代码获取当前选择的OOXML,然后在选择后复制它 - 也失败并出现相同的错误。

await Word.run(async (context) => {

   var sourceRange = context.document.getSelection();
   var contentToCopy = sourceRange.getOoxml();
   await context.sync();

   sourceRange.insertOoxml(contentToCopy.value, 'After');
   await context.sync();
});

希望我在这里找到一些简单的东西。任何有关插入任何Ooxml片段的建议/解决方法都表示赞赏。

更新2018-09-04:微软已经承认了这个问题并且正在修复它。

更新2018-09-12:InsertOoxml似乎再次运行 - 虽然我没有得到微软关于修复的确认。

javascript ms-word office-js office-addins word-addins
1个回答
0
投票

InsertOoxml现在似乎再次正常工作。

我还没有得到微软支持案例中关于修复的确认,但我的所有客户似乎再次正常运行。

感谢Juan Balmori和那些在可扩展性团队中工作的人来解决这个问题。

J.

© www.soinside.com 2019 - 2024. All rights reserved.