Office JS - 将customProperty添加到新文档

时间:2018-05-10 14:39:23

标签: ms-word ms-office office-js

我正在开发一个addIn for office(word),我遇到了这个问题。我需要将自定义属性分配给将在新窗口/实例中打开的新文档。

我已经在以这种方式打开的文档中使用自定义属性:

setProperty(propName, propValue) {
 Word.run(context => {
  context.document.properties.customProperties.add(propName, propValue);
  return context.sync();
}).catch(error => {
  if (error instanceof OfficeExtension.Error) {
    console.log(
      "Error code and message: " + JSON.stringify(error.debugInfo)
    );
   }
 });
}

getFileOverride(attach, file) {
 self.getDocumentAsBase64(attach.id).then(data => {
  Word.run(context => {
    let body = context.document.body;
    body.insertFileFromBase64(data, Word.InsertLocation.replace);
    return context
      .sync()
      .then(() => {
        self.setProperty("fileId", file.id);
        self.setProperty("attachId", attach.id);
      })
      .then(context.sync)
      .catch(error => {
        self.updateStatus("Error al obtener el archivo");
        if (error instanceof OfficeExtension.Error) {
          console.log(
            "Error code and message: " + JSON.stringify(error.debugInfo)
          );
        }
      });
  }).catch(error => {
    if (error instanceof OfficeExtension.Error) {
      console.log(
        "Error code and message: " + JSON.stringify(error.debugInfo)
      );
    }
  });
 });
}

但是当我创建一个新文档时,我不知道如何实现这一目标。我尝试了以下操作,但提供了常规异常错误:

getDocumentAsBase64(function(data) {
 Word.run(function(context) {
  var myNewDoc = context.application.createDocument(data);
  context.load(myNewDoc);

  return context
    .sync()
    .then(function() {
      myNewDoc.properties.load();
      myNewDoc.properties.customProperties.add("custom", "prop");
      myNewDoc.open();
    })
    .then(context.sync)
    .catch(function(myError) {
      //otherwise we handle the exception here!
      updateStatus(myError.message);
    });
 }).catch(function(myError) {
   updateStatus(myError.message);
 });
});

我尝试过制作类似 setProperty 的功能,但它没有添加属性:

function setExternalProperty(document, propName, propValue) {
 Word.run(context => {
 document.properties.load();
 document.properties.customProperties.add("custom", "prop");
 return context.sync();
}).catch(error => {
  if (error instanceof OfficeExtension.Error) {
   console.log("Error code and message: " + JSON.stringify(error.debugInfo));
  }
 });
}

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案,很简单。我将我的功能更改为:

getFileNew(attach, file) {
 self.getDocumentAsBase64(attach.id).then(data => {
  Word.run(context => {
    var myNewDoc = context.application.createDocument(data);
    myNewDoc.properties.load();
    myNewDoc.properties.customProperties.add("fileId", file.id);
    myNewDoc.properties.customProperties.add("fileName", file.name);
    myNewDoc.properties.customProperties.add("attachId", attach.id);
    myNewDoc.properties.customProperties.add("attachName", attach.name);
    myNewDoc.open();
    return context.sync()
  }).catch(error => {
    if (error instanceof OfficeExtension.Error) {
      console.log(
        "Error code and message: " + JSON.stringify(error.debugInfo)
      );
    }
  });
 });
}

SIDENOTE:这仅适用于桌面版。如果要在Office Online的新窗口中打开文档,则必须省略customProperties,否则将引发异常