getSpecialServices = createSelector(
getCustomers,
(customers, props: { type: string }) => ();
以上面的例子为例,我希望实际上也能够将不同的道具传递给getCustomers选择器。 我需要基于另一个props变量的某些客户。 那可行吗? 如何才能做到这一点呢?
答案 0 :(得分:1)
道具将传递给所有“子选择器”,在您的示例中,getCustomers
选择器将收到props
中的getSpecialServices
。