如何在任务窗格应用程序中使用OfficeJ获取文档共享链接?

时间:2018-01-13 14:40:40

标签: office-js office-addins excel-addins

目前是否可以获取已打开文档的共享链接(仅查看或编辑)?我想知道发送链接或添加其他用户的任务是否可以通过具有预定逻辑的javascript自动化。

1 个答案:

答案 0 :(得分:1)

查看document.getFilePropertiesAsync方法。

结果对象将包含文件url(如果存在)。

function getFileUrl() {
    //Get the URL of the current file.
    Office.context.document.getFilePropertiesAsync(function (asyncResult) {
        var fileUrl = asyncResult.value.url;
        if (fileUrl == "") {
            showMessage("The file hasn't been saved yet. Save the file and try again");
        }
        else {
            showMessage(fileUrl);
        }
    });
}