【发布时间】:2016-12-28 18:40:33
【问题描述】:
我正在按照链接尝试 displayDialogAsync 方法, https://channel9.msdn.com/Shows/Office-Dev-Show/Office-Dev-Show-Episode-26-Using-the-Dialog-API-in-Office-Add-ins 当我从 GitHub 测试项目时,我在 Office.context.ui.displayDialogAsync 收到错误“Permission Denied error”。 这是一个简单的代码:
function ShowDialog() {
// Reference the Form.html file.
var dialogUrl = 'https://' + location.host + '/Form.html';
// Display the dialog.
Office.context.ui.displayDialogAsync(dialogUrl, { 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);
showNotification('Hello #Office365Dev', data.name);
// TODO: Do something with the data.
// We got our data, time to close the dialog.
dialog.close();
});
});
}
感谢您的帮助。
【问题讨论】:
标签: ms-office office-addins office-js