0

我的加载项在 Windows 上使用 Word 正确加载,但通过 Word Online 显示加载错误(使用 Chrome、Firefox 和 Edge 测试)即使单击提示按钮最终加载加载项并且一切都按预期工作。这就是我在加载使用页面 ( https://office.flexxlegal.com/Home/Usage ) 的加载项中看到的内容:

  1. 页面在任务窗格中加载,带有灰色覆盖和加载动画
  2. 接收加载项错误消息 - 出现问题,我们无法启动此加载项。请稍后再试或联系您的系统管理员。
  3. 单击重试按钮
  4. 页面再次显示在任务窗格中,带有覆盖和加载动画
  5. 接收加载项错误消息 - 此加载项可能无法正确加载,但您仍然可以尝试启动它。
  6. 单击开始按钮
  7. 页面加载,一切按预期工作

以下是应用清单中与他的控件相关的部分:

<Control xsi:type="Button" id="Flexx.Help">
  <Label resid="Flexx.Help.Label" />
  <Supertip>
    <!-- ToolTip title. resid must point to a ShortString resource. -->
    <Title resid="Flexx.Help.Label" />
    <!-- ToolTip description. resid must point to a LongString resource. -->
    <Description resid="Flexx.Help.Tooltip" />
  </Supertip>
  <Icon>
    <bt:Image size="16" resid="Flexx.qicon_16x16" />
    <bt:Image size="32" resid="Flexx.qicon_32x32" />
    <bt:Image size="80" resid="Flexx.qicon_80x80" />
  </Icon>

  <!-- This is what happens when the command is triggered (E.g. click on the Ribbon). Supported actions are ExecuteFunction or ShowTaskpane. -->
  <Action xsi:type="ShowTaskpane">
    <TaskpaneId>FLTaskPane</TaskpaneId>
    <!-- Provide a url resource id for the location that will be displayed on the task pane. -->
    <SourceLocation resid="Flexx.Help.Url" />
  </Action>
</Control>

<Resources>
  <bt:Images>
    <bt:Image id="Flexx.qicon_16x16" DefaultValue="https://office.flexxlegal.com/assets/img/Q16.png" />
    <bt:Image id="Flexx.qicon_32x32" DefaultValue="https://office.flexxlegal.com/assets/img/Q32.png" />
    <bt:Image id="Flexx.qicon_80x80" DefaultValue="https://office.flexxlegal.com/assets/img/Q80.png" />
  </bt:Images>
  <bt:Urls>
    <bt:Url id="Flexx.Help.Url" DefaultValue="https://office.flexxlegal.com/Home/Usage" />
  </bt:Urls>
  <!-- ShortStrings max characters==125. -->
  <bt:ShortStrings>
    <bt:String id="Flexx.Help.Label" DefaultValue="Getting Started" />
  </bt:ShortStrings>
  <!-- LongStrings max characters==250. -->
  <bt:LongStrings>
    <bt:String id="Flexx.Help.Tooltip" DefaultValue="Click to view usage information to get started with this FlexxLegal add-in." />
  </bt:LongStrings>
</Resources>

随着网页的加载,没有代码隐藏,没有 javascript,只有一个静态 HTML 页面。关于问题可能是什么,或者我将如何确定问题的任何见解?

谢谢,瑞安

4

1 回答 1

0

加载网页后,没有代码隐藏,没有 javascript,只有一个静态 HTML 页面

这是你的问题。您的加载项页面必须引用该office.js库并包含一个Office.initialize处理程序。

我建议查看文档以获取有关 Office Web 加载项如何工作的说明:了解 Office 的 JavaScript API

于 2018-02-27T18:32:56.673 回答