true
또는
false
를 리턴해야 합니다. 이 클로져는 일반적으로 모델컨텍스트의 API를 이용하여,
선택하고자 하는 모델의 속성을 검사합니다.false
or true
. The closure checks
the properties of the model to select, generally by using
model context API. 모든 컬럼을 선택하는 예제:
select(function(it){ return it.get("type") == "column"; });
An example of selecting all columns:
select(function(it){ return it.get("type") == "column"; });