SPFx:在清单 JSON 中加载架构时出现问题

SPFx: Problem with loading schema in manifest JSON

我在 SP 的新 Web 部件中加载 SPFx 中的 $schema 时遇到问题。 Web 部件正在处理 benchmark.aspx,但我的整个清单未得到处理,因此我无法设置预配置条目,这对我来说是个大问题。

错误是: 加载引用“https://developer.microsoft.com/json-schemas/spfx/client-side-manifest-base.schema.json”时出现问题:请求 vscode/content 在未提供任何详细信息的情况下意外失败。(768)

请问您对这个问题有什么想法吗?

{
  
  "$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json", 
    
  "id": "56dab116-67ba-453f-883d-b7a11690e965",
  "alias": "ReadListWebPart",
  "supportedHosts": ["SharePointWebPart"],
  "componentType": "Webpart", 
  
  "version": "1.0",
  "manifestVersion": "2",

  
  "requiresCustomScript": false,
  

  "preconfiguredEntries": [{
    "groupId": "5c03119e-3074-46fd-976b-c60198311f70", 
    "group": { "default": "Other" },
    "title": { "default": "read-list" },
    "description": { "default": "popis web party" },
    "officeFabricIconFontName": "Page",
    "properties": {
      "vedouci_velke_foto": true,
      "asistenti_pod_vedoucim": false, 
      "nazev_web_party": "To jsme my"   
    }
  }]
}

我检查了manifest.json,会和你的一样,有如下警告:

然后在我的本地测试访问“https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json”,没有问题,仍然可以访问。

在此之后,我测试了在 React SPFX Web 部件中输出预配置的属性,如下所示:

Props.ts

WebPart.ts

.tsx

仍然可以输出属性:

总之,你可以忽略这个问题,它仍然可以读取预配置的条目。