我开发了一个 Outlook 插件,它使用 OfficeJS API 并希望在应用程序中实现 OAuth,也
API Documnetation 说 Outlook 2016(桌面)支持要求集 1.1、1.2、1.3 和 1.4,但在我的情况下它保持沉默甚至不抛出错误。
在运行 dialog api sample for word add-in 时,我得到了
JavaScript 运行时错误: Unable to get property 'displayDialogAsync' of undefined or null reference

我正在使用 Microsoft Office Professional Plus 2016。

我编写的启动对话框的代码如下:

dialogTest() {
        const url = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?response_type=....";
        Office.context.ui.displayDialogAsync(url, { width: 15, height: 27, requireHTTPS: true }, function (asyncResult) {
            if (asyncResult.status !== Office.AsyncResultStatus.Succeeded) {
                // TODO: Handle error.
                return;
            }

            // Get the dialog and register event handlers.
            var dialog = asyncResult.value;
            dialog.addEventHandler(Microsoft.Office.WebExtension.EventType.DialogMessageReceived, function (asyncResult) {
                if (asyncResult.type !== Microsoft.Office.WebExtension.EventType.DialogMessageReceived) {
                    // TODO: Handle unknown message.
                    return;
                }

                // Parse the message.
                var data = JSON.parse(asyncResult.message);
                console.log('Hello #Office365Dev', data.name);

                // TODO: Do something with the data.

                // We got our data, time to close the dialog.
                dialog.close();
            });
        });
    }

最佳答案

看起来 uiOffice.context 成员未定义或 Office.js 未正确加载。尝试先回顾这些:

  • Office.js javascript 是否正确加载?
  • 在你做某事之前,Office.initialize 回调是否设置好并执行了?
  • 您的 Outlook 桌面 2016 版本是什么?

  • 编辑: 于 2016 年 6 月与微软工程师讨论(这不是官方声明)。 dialogAPI 支持的内部版本是 Office for Windows Desktop 2016(内部版本 16.0.6741.0000 或更高版本)。这可能会改变。
  • 这段代码的结果是什么var result = Office.context.requirements.isSetSupported('DialogAPI', '1.4');
  • 关于office-js - 如何使用 Outlook 2016 桌面客户端获取 OfficeJS API 的工作对话框 API,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41259110/

    10-10 18:10
    查看更多