如何访问SAP Spartacus里的config数据
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                如何访问SAP Spartacus里的config数据
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                App module里調用ConfigModule.withConfig注入配置,調用兩次withConfig,傳入的參數會進行合并:
ConfigModule.withConfig({cmsComponents: {SimpleResponsiveBannerComponent: {component: MycomComponent},CartComponent: {component: MyCartComponent}} as CmsConfig}),ConfigModule.withConfig({someCustomComponent: {a: "b"}})通過構造函數參數注入:
export class AppComponent implements OnInit {constructor(private componentFactoryResolver: ComponentFactoryResolver,private outletService: OutletService<ComponentFactory<MycomComponent>>, @Inject(Config) private config: any) { }運行時的配置信息:
cmsComponents就是我在app Component里調用withConfig進行的配置:
其中絕大部分屬性都是Spartacus的默認配置,只有下圖這個是我在代碼里更改過的:
這是我傳入的另一個自定義配置:
注入時也可以顯式地指定配置的類型,比如:
export class AppComponent implements OnInit {constructor(private componentFactoryResolver: ComponentFactoryResolver,private outletService: OutletService<ComponentFactory<MycomComponent>>, @Inject(Config) private config: any,@Inject(Config) private cmsConfig: CmsConfig) {debugger;}
 
 
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
 
總結
以上是生活随笔為你收集整理的如何访问SAP Spartacus里的config数据的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 杨玉环最强回血出装
- 下一篇: 如祺出行获批在广州开展智能网联汽车示范运
