Outlook 插件:如何使用 Outlook 桌面显示 console.log?
Outlook AddIn : How to show console.log with Outlook Desktop?
我正在 Javascript 中开发 Outlook 加载项。我的功能在 Outlook Web 中运行良好,但在 Outlook 桌面版中不起作用。
在 Outlook Web 中,我可以在浏览器的控制台中看到我的 console.log 消息。但我不知道如何使用 Outlook 桌面执行此操作,以便我可以正确调试我的桌面应用程序。
感谢您的帮助
对于 windows10 和 Outlook,请使用 Microsoft Edge DevTools Preview https://www.microsoft.com/en-us/p/microsoft-edge-devtools-preview/9mzbfrmz0mnj?activetab=pivot:overviewtab。我今天刚刚将它与 outlook 插件一起使用
在 Outlook 上打开您的加载项。
转到并打开其中之一:
32 位 – C:\Windows\System32\F12\IEChooser.exe
64 位 – C:\Windows\SysWOW64\F12\IEChooser.exe
还有你的调试器。
作为替代方案,您可以在 Windows 10 上使用 Fiddler 或 Procmon 或使用开发人员工具调试插件。这是 documentation。
我正在 Javascript 中开发 Outlook 加载项。我的功能在 Outlook Web 中运行良好,但在 Outlook 桌面版中不起作用。
在 Outlook Web 中,我可以在浏览器的控制台中看到我的 console.log 消息。但我不知道如何使用 Outlook 桌面执行此操作,以便我可以正确调试我的桌面应用程序。
感谢您的帮助
对于 windows10 和 Outlook,请使用 Microsoft Edge DevTools Preview https://www.microsoft.com/en-us/p/microsoft-edge-devtools-preview/9mzbfrmz0mnj?activetab=pivot:overviewtab。我今天刚刚将它与 outlook 插件一起使用
在 Outlook 上打开您的加载项。
转到并打开其中之一: 32 位 – C:\Windows\System32\F12\IEChooser.exe 64 位 – C:\Windows\SysWOW64\F12\IEChooser.exe 还有你的调试器。
作为替代方案,您可以在 Windows 10 上使用 Fiddler 或 Procmon 或使用开发人员工具调试插件。这是 documentation。