SAP Spartacus里的StorefrontConfig静态类型

时间:2022-07-24
本文章向大家介绍SAP Spartacus里的StorefrontConfig静态类型,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

当我把下图Spartacus这段配置代码里的baseUrl改成baseUrl2时,

报错:

Follow link (ctrl + click)

Types of property 'backend' are incompatible.
  Type '{ occ: { baseUrl2: string; prefix: string; }; }' is not assignable to type '{ occ?: { baseUrl?: string; prefix?: string; useWithCredentials?: boolean; endpoints?: OccEndpoints; legacy?: boolean; }; media?: { baseUrl?: string; }; loadingScopes?: LoadingScopes; }'.
    Types of property 'occ' are incompatible.
      Type '{ baseUrl2: string; prefix: string; }' is not assignable to type '{ baseUrl?: string; prefix?: string; useWithCredentials?: boolean; endpoints?: OccEndpoints; legacy?: boolean; }'.
        Object literal may only specify known properties, but 'baseUrl2' does not exist in type '{ baseUrl?: string; prefix?: string; useWithCredentials?: boolean; endpoints?: OccEndpoints; legacy?: boolean; }'. Did you mean to write 'baseUrl'?ts(2326)
Peek Problem
No quick fixes available

这个config的类型为StorefrontConfig:

其定义在这个文件里:“C:CodeSPAmystorenode_modules@spartacusstorefrontstorefront-config.d.ts”