Office Web加载项-保存设置时出现内部错误

时间:2019-07-16 10:28:17

标签: office-js office-addins word-web-addins

尝试保存文档设置时出现故障。该消息如下:{"name":"Internal Error","message":"An internal error has occurred.","code":5001}

我的代码:

Office.context.document.settings.set('token', token);
Office.context.document.settings.set('email', email);
Office.context.document.settings.saveAsync(function (asyncResult) {
   if (asyncResult.error) {
      displayError(asyncResult.error.message);
   }
});

重新安装操作系统(Windows 10)时出现的问题,在Office for Mac和Web中不存在。它同时在PowerPoint和Word上发生。 也许它具有文件写入权限?

[编辑] 我怀疑这可能与最新的office.js版本有关。我使用的是官方CDN(https://appsforoffice.microsoft.com/lib/1/hosted/office.js)或Windows客户端的最新Office 365更新(16.0.11727.20222)。尝试保存roamingSettings时,Outlook中也存在该问题。则消息为:{"name":"GenericSettingsError","message":"Permission denied","code":9019}

1 个答案:

答案 0 :(得分:0)

问题已通过Outlook版本1907(内部版本11901.20176)修复。更新Office以摆脱它就足够了。

GitHub page with an issue