其他分享
首页 > 其他分享> > 在SAP Spartacus产品明细页面用outlet显示自定义数据

在SAP Spartacus产品明细页面用outlet显示自定义数据

作者:互联网

首先创建一个新的Angular module和Component:

这个新的module,因为要使用Outlet功能,所以需要从@Spartacus/storefront里导入OutletRefModule,以及导出我们自己实现的MyOutletsComponent以便让外界消费。

MyOutletsComponent的实现:

在构造函数里注入currentProductService, 调用getProduct方法异步读取当前product属性,存储在属性product$里:

在这个Component的html里,显示product$的值:

<ng-template cxOutletRef="ProductDetailsPageTemplate" cxOutletPos="before" let-model>
    <h1>Jerry</h1>
    <p>Product: {{ product$ | async | json }}</p>
</ng-template>

最后别忘了把Component的selector标签加到app Component的html里:

最后的效果:

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

标签:product,Spartacus,Component,Jerry,module,outlet,MyOutletsComponent,定义数据
来源: https://www.cnblogs.com/sap-jerry/p/14026561.html