通过Office Javascript API 1.1发表评论

时间:2015-05-23 08:56:08

标签: javascript ms-office office365 apps-for-office

我的任务是通过Office Javascript API在与Word 2007或更高版本兼容的Word文档(.docx)中发表评论。

我发现,有没有直接通过Microsoft API执行此操作。

由于我能够将OOXML传递给Word文档,我认为我可以使用它来发表评论。

我对Word文档结构进行了一些研究,发现注释存储在一个名为" comments.xml"的单独XML文件中。然后通过" document.xml"中的ID引用(我附上了相应的样本)。

有没有办法通过API编辑此comments.xml,以便在Word文档中发表评论,或者可能?

示例" document.xml":

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
    mc:Ignorable="w14 wp14">
<w:body>
    <w:p w:rsidR="00A9590C" w:rsidRDefault="0058668B">
        <w:r>
            <w:t>I am text.</w:t>
        </w:r>
    </w:p>
    <w:p w:rsidR="0058668B" w:rsidRDefault="0058668B">
        <w:commentRangeStart w:id="0"/>
        <w:r>
            <w:t>I am text with comment.</w:t>
        </w:r>
        <w:commentRangeEnd w:id="0"/>
        <w:r>
            <w:rPr>
                <w:rStyle w:val="Kommentarzeichen"/>
            </w:rPr>
            <w:commentReference w:id="0"/>
        </w:r>
    </w:p>
    <w:sectPr w:rsidR="0058668B">
        <w:pgSz w:w="11906" w:h="16838"/>
        <w:pgMar w:top="1417" w:right="1417" w:bottom="1134" w:left="1417" w:header="708" w:footer="708"
                 w:gutter="0"/>
        <w:cols w:space="708"/>
        <w:docGrid w:linePitch="360"/>
    </w:sectPr>
</w:body>

示例&#34; comments.xml&#34;:

 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <w:comments
   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
   xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
  mc:Ignorable="w14 wp14">
 <w:comment w:id="0" w:author="rz" w:date="2015-05-23T10:30:00Z" w:initials="r">
<w:p w:rsidR="0058668B" w:rsidRDefault="0058668B">
    <w:pPr>
        <w:pStyle w:val="Kommentartext"/>
    </w:pPr>
    <w:r>
        <w:rPr>
            <w:rStyle w:val="Kommentarzeichen"/>
        </w:rPr>
        <w:annotationRef/>
    </w:r>
    <w:r>
        <w:t>Test</w:t>
    </w:r>
    <w:bookmarkStart w:id="1" w:name="_GoBack"/>
    <w:bookmarkEnd w:id="1"/>
</w:p>
 </w:comment>
</w:comments>

1 个答案:

答案 0 :(得分:2)

这是我在与您一起研究时能够找到的最多信息:

https://msdn.microsoft.com/en-us/magazine/jj991976.aspx

注意:了解如何从应用程序操作OOXML的一个好方法是使用UI添加要使用的内容(例如,通过单击“插入”|“插图”|“SmartArt”插入SmartArt),获取OOXML对于使用getSelectedDataAsync的内容然后读取结果。

我会这样做,然后使用setSelectedDataAsync将这些结果作为ooxml发送,这将回答你的问题。办公室是否足够聪明,可以自己创建这些引用,还是不是? (如果没有,你可以通过api做任何事情)

老评论(我发现你的第一个前提是真的。请忽略,或者为笑而读)

看起来您可以使用setSelectedDataAsync函数传递注释值并将它们应用于word文档中当前选定的内容。以下是两个最相关的片段:

 Office.context.document.setSelectedDataAsync(data [, options], callback(asyncResult));

 Office.CustomXMLNodeType.NodeComment   "comment"   The node is a comment.

从微软的一个例子中使用的强制类型的实现,以及强制类型就像customexmlnodetype一样的枚举...这对我来说是有意义的,这是有效的。

 function writeMatrix() {
     Office.context.document.setSelectedDataAsync("test comment"], {CustomXMLNodeType: Office.Office.CustomXMLNodeType.NodeComment}
    function (asyncResult) {
        var error = asyncResult.error;
        if (asyncResult.status === Office.AsyncResultStatus.Failed){
            write(error.name + ": " + error.message);
        }
    });

}

回顾文档,我现在发现coercionType是object下的可选参数,而不是所有枚举。那真是太蠢了!!

以下是我引用的信息:

检查出来:https://msdn.microsoft.com/en-us/library/office/fp142145.aspx

而且:https://msdn.microsoft.com/EN-US/library/office/fp142154.aspx