SPOnline:将功能/资产部署包括到我的SPfx WebPart中之后,我无法将其放置在任何SitePage上

时间:2019-04-30 12:26:51

标签: sharepoint sharepoint-online web-parts spfx

我正在尝试向SharePoint Online上的SPfx WebPart项目添加一些配置功能。问题在于,一旦我将功能信息放入package-solution.json中,配置的列表就会正确部署,但是我无法在站点页面上添加WebPart本身。

我正在SharePoint Online的SPfx WebPart项目上使用Visual Studio Code。我已经在公司的租户中部署了各种WebParts and Extensions,但是对于具有功能和资产的东西我还是很陌生。

我的WebPart需要两个特定的列表,当每个[New]-> [App]添加到站点内容时,它应该自行部署。 因此,我向项目中添加了elements.xml和两个schema-*。xml文件,并修改了package-solution.json使其包含为功能。

从那时起,列表列出了正确部署到我添加应用程序的SiteCollection或SubSite的位置。 但是(!)在编辑SitePage和添加WebPart时,WebPart本身不会显示。它甚至不在您选择所需WebPart的弹出窗口中。

添加应用程序时也没有安装错误,当从package-solution.json中删除功能信息时,SiteCollection和WebPart也可以正常工作。

我在这里,不知道出了什么问题,需要您的帮助。

package-solution.json

{
  "$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
  "solution": {
    "name": "sp-bookingtool-admin",
    "id": "30d57d62-8319-4b29-b0f9-***********",
    "version": "2.0.0.6",
    "features": [
      {
        "title": "sp-bookingtool-admin-features",
        "description": "asset-deployment-webpart-client-side-solution",
        "id": "523fe887-ced5-4036-b564-***********",
        "version": "2.0.0.6",
        "assets": {
          "elementManifests": [
            "elements.xml"
          ],
          "elementFiles": [
            "schema-sessions.xml",
            "schema-courses.xml"
          ]
        }
      }
    ]
  },
  "paths": {
    "zippedPackage": "solution/sp-bookingtool-admin.sppkg"
  }
}

elements.xml

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">

    <ListInstance
            CustomSchema="schema-sessions.xml"
            FeatureId="00bfea71-de22-43b2-a848-***********"
            Title="BookingTool-Sessions"
            Description="BookingTool-Sessions"
            TemplateType="100"
            Url="Lists/BookingToolSessions">
    </ListInstance>

    <ListInstance
            CustomSchema="schema-courses.xml"
            FeatureId="00bfea71-de22-43b2-a848-***********"
            Title="BookingTool-Courses"
            Description="BookingTool-Courses"
            TemplateType="100"
            Url="Lists/BookingToolCourses">
    </ListInstance>

</Elements>

两个schema.xml中的1个

<List xmlns:ows="Microsoft SharePoint" Title="BookingTool-Courses" EnableContentTypes="TRUE" FolderCreation="FALSE" Direction="$Resources:Direction;" Url="Lists/BookingToolCourses" BaseType="0" xmlns="http://schemas.microsoft.com/sharepoint/">
  <MetaData>
    <Fields>
      <Field ID="{1e513910-8092-45f7-b996-***********}" Name="Text_1" Type="Text" DisplayName="Text_1"  Group="" Required="TRUE"/>
      <Field ID="{d82721d4-0b3c-48cf-9a24-***********}" Name="Text_2" Type="Text" DisplayName="Text_2" Group="" Required="TRUE"/>
    </Fields>
    <Views>
      <View BaseViewID="1" Type="HTML" WebPartZoneID="Main" DisplayName="$Resources:core,objectiv_schema_mwsidcamlidC24;" DefaultView="TRUE" MobileView="TRUE" MobileDefaultView="TRUE" SetupPath="pages\viewpage.aspx" ImageUrl="/_layouts/images/generic.png" Url="AllItems.aspx">
        <RowLimit Paged="TRUE">30</RowLimit>
        <Toolbar Type="Standard" />
        <ViewFields>
          <FieldRef Name="LinkTitle"></FieldRef>
        </ViewFields>
        <Query>
          <OrderBy>
            <FieldRef Name="LinkTitle" />
          </OrderBy>
        </Query>
      </View>
    </Views>
    <Forms>
      <Form Type="DisplayForm" Url="DispForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
      <Form Type="EditForm" Url="EditForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
      <Form Type="NewForm" Url="NewForm.aspx" SetupPath="pages\form.aspx" WebPartZoneID="Main" />
    </Forms>
  </MetaData>
</List>

1 个答案:

答案 0 :(得分:0)

多亏了一个同事,我自己发现了错误。

出乎我的意料,ListInstances中的“ FeatureID”不是已开发功能的GUID,但是您所使用的Listtemplate的ID取决于“ TemplateType”。

<ListInstance
            CustomSchema="schema-sessions.xml"
            FeatureId="00bfea71-de22-43b2-a848-c05709900100"
            Title="BookingTool-Sessions"
            Description="BookingTool-Sessions"
            TemplateType="100"
            Url="Lists/BookingToolSessions">
 </ListInstance>

00bfea71-de22-43b2-a848-c05709900100 是自定义列表的ID, 100 是该列表的模板类型。