如何在Ngrx中的选择器内向选择器添加道具

时间:2019-12-17 03:41:50

标签: angular ngrx ngrx-store

getSpecialServices = createSelector(
getCustomers,
(customers, props: { type: string }) => ();

以上面的例子为例,我希望实际上也能够将不同的道具传递给getCustomers选择器。 我需要基于另一个props变量的某些客户。 那可行吗? 如何才能做到这一点呢?

1 个答案:

答案 0 :(得分:1)

道具将传递给所有“子选择器”,在您的示例中,getCustomers选择器将收到props中的getSpecialServices