如何调试Outlook插件的功能文件。出于某种原因,该加载项可联机运行,但不能在桌面客户端上运行。
过去,我发现桌面客户端不支持某些Javascript标记。
因此,现在我将功能文件更改为一个简单的文件,只是为了验证在桌面客户端中是否调用了这些功能。我可以说一个事实,在桌面客户端中根本没有调用函数something
。该操作将永远挂起。 F12调试工具未显示目标。
如何调试此功能文件?
功能文件
(function () {
Office.initialize = function (reason) {
};
})();
function doIt(event) {
console.log("Here");
event.completed();
}
Manifest.xml
...
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
<OfficeTab id="appOrgTab">
<Group id="appOrgCmdGroup">
<Label resid="groupLabel"/>
<Control xsi:type="Button" id="appOrgCtrl">
<Label resid="appOrgLabel"/>
<Supertip>
<Title resid="appOrgTitle"/>
<Description resid="appOrgDesc"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="icon16"/>
<bt:Image size="32" resid="icon32"/>
<bt:Image size="80" resid="icon80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>doIt</FunctionName>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
<ExtensionPoint xsi:type="Events">
<Event Type="ItemSend" FunctionExecution="synchronous" FunctionName="doIt"/>
</ExtensionPoint>
...
答案 0 :(得分:1)
我发现问题出在我的自签名证书上。将我的插件作为任务窗格...我可以在窗格中授权证书。但是,由于没有用于执行功能的窗格,因此对我的服务器的请求被阻止。 我安装了有效的证书,现在可以使用。