因此,我想记住/缓存一个带有特定参数的函数的结果。是否仅根据参数重新选择“ LAST”调用还是全部选择?
function generateGeoLocationCoords({x, y}) {
// return some expensive calculation
}
// calling the function
generateGeoLocationCoords(coords);
我不理解如何仅在函数参数上“创建选择器” ...我看到的所有示例都是针对redux的。是这个吗?
const geoSelector = createSelector([coords => coords], generateGeoLocationCoords)
我没有为选择器真正期望的参数感到困惑吗?初始功能,然后传递给另一个功能?