gpt4 book ai didi

office365 - 上传 Outlook 加载项 list 时“ list 文件不符合架构定义”

转载 作者:行者123 更新时间:2023-12-04 16:31:22 25 4
gpt4 key购买 nike

为实现 add-in commands 的 Outlook 加载项上传 list 文件时,我收到以下错误:

Something went wrong

This app can't be installed. The manifest file doesn't conform to the schema definition. The element 'CustomTab' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides' has invalid child element 'Label' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides'. List of possible elements expected: 'Group in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides'...

但是,Label 元素是 CustomTab 元素的有效子元素。我该如何解决这个问题?

最佳答案

简短回答:确保 Label 元素出现在 CustomTab 元素内的所有 Group 元素之后

Office 365 最近在 list 文件上启用了额外的模式验证,并且由于为 CustomTab 元素定义模式的方式,它希望 Label 紧随其后。

换句话说,具有此 CustomTab 元素的 list 将触发错误:

<CustomTab id="TabCustom1">
<Label resid="customTabLabel1"/>
<Group id="group1">
<Label resid="groupLabel1"/>
<Control xsi:type="Button" id="uilessButton1">
<Label resid="uilessButtonLabel1"/>
<Supertip>
<Title resid="uilessButtonSuperTipTitle1"/>
<Description resid="uilessButtonSuperTipDesc1"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="uilessButtonIcon1-16"/>
<bt:Image size="32" resid="uilessButtonIcon1-32"/>
<bt:Image size="80" resid="uilessButtonIcon1-80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>buttonFunction1</FunctionName>
</Action>
</Control>
</Group>
</CustomTab>

将其更改为此将解决错误:

<CustomTab id="TabCustom1">
<Group id="group1">
<Label resid="groupLabel1"/>
<Control xsi:type="Button" id="uilessButton1">
<Label resid="uilessButtonLabel1"/>
<Supertip>
<Title resid="uilessButtonSuperTipTitle1"/>
<Description resid="uilessButtonSuperTipDesc1"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="uilessButtonIcon1-16"/>
<bt:Image size="32" resid="uilessButtonIcon1-32"/>
<bt:Image size="80" resid="uilessButtonIcon1-80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>buttonFunction1</FunctionName>
</Action>
</Control>
</Group>
<Label resid="customTabLabel1"/>
</CustomTab>

关于office365 - 上传 Outlook 加载项 list 时“ list 文件不符合架构定义”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34969479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com