首先创建一个新的Angular module和Component:这个新的module,因为要使用Outlet功能,所以需要从@Spartacus/storefront里导入OutletRefModule,以及导出我们自己实现的MyOutletsComponent以便让外界消费。
MyOutletsComponent的实现:
在构造函数里注入currentProductService, 调用getProduct方法异步读取当前product属性,存储在属性product$里:在这个Component的html里,显示product$的值:后别忘了把Component的selector标签加到app Component的html里:
最后的效果: