我正在尝试按照本指南开发 Word 插件:
https://dev.office.com/docs/add-ins/word/word-add-ins
我将所有内容都与指南相同,但是当我尝试在 Word 中打开它时出现错误:
插件错误:我们无法初始化此插件
或者
插件错误:配置错误
我猜我的标签 SourceLocation 有问题
这是我的 XML:
<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:type="TaskPaneApp">
<Id>fd3731db-b538-4e32-819f-b09b801894e8</Id>
<Version>1.0.0.0</Version>
<ProviderName>Microsoft</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Boilerplate content" />
<Description DefaultValue="Insert boilerplate content into a Word document." />
<Hosts>
<Host Name="Document"/>
</Hosts>
<DefaultSettings>
<SourceLocation DefaultValue="http://localhost:8080/boilerplate/home.html" />
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
</OfficeApp>
我也尝试过使用共享文件夹:
<SourceLocation DefaultValue="\\MyShare\boilerplate\home.html" />
注意:我正在 Word Online 中进行测试