我尝试使用lodash fp添加lodash,但我无法理解它。我认为这是优化lodash的最佳方式。在我的aurelia项目中,我有
import lofind from 'lodash/fp/find';
然后在我的代码中我尝试使用它
this.activeTrek = lofind(this.treks._embedded.get_user_treks, { 'default_trip': '1'});
这似乎根本不起作用。我是否缺少一些步骤或在FP中加载的正确方法?我的查找语法是错误还是什么?