我应该如何将Lodash过滤器方法重写为Ramda过滤器?

时间:2018-07-19 14:32:16

标签: javascript lodash ramda.js

type horizo​​ntalLines =数组

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="top" android:rotation="180"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_gravity="center" android:id="@+id/cols"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/col1"> <Button .../> <Button .../> <Button .../> <Button .../> <Button .../> <Button .../> </LinearLayout> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:id="@+id/col2"> <Button .../> <Button .../> <Button .../> <Button .../> <Button .../> <Button .../> </LinearLayout> </LinearLayout> </LinearLayout>

1 个答案:

答案 0 :(得分:2)

Ramda的函数往往具有更简单的签名,这些签名来自lodash。像lodash函数一样,在很多地方都可以传递函数或对象来配置函数。但是有很多方法可以做到这一点。您只需要结合Ramda的更多原始功能即可。

这里有两个可行的解决方案:

filter(pathEq(['props', 'height'], '1'), lines)

filter(where({props: whereEq({height: '1'})}), lines)