f.Collection.filter()

f.Collection.filter(collectionKey, Operator, value)

개요

대상카테고리에서 섹터상태에 해당하는 섹터를 카테고리 이동시킬 수 있습니다.

함수자동 생성 기능(링크)을 통해 생성 할 수 있습니다.

파라미터

Operator

예시

f.Collection.filter('key','Exists',null); 
f.Collection.filter('key','Not_Exists',null);
f.Collection.filter('key','==','바나나')
f.Collection.filter('key','!=','바나나');
f.Collection.filter('key','<','10');
f.Collection.filter('key','>,'10');
f.Collection.filter('key','<=','10');
f.Collection.filter('key','>=','10');
// 단어 중간에 '나'가 있고 '나' 다음에 딱 한 글자가 있는 문자열
f.Collection.filter('key','Like','%나_');
// 010-XXXX-XXXX 인 휴대폰번호 필터링
f.Collection.filter('key','RegExp', /^010-\d{4}-\d{4}$/);

참조

Regular expression syntax cheat sheet - JavaScript | MDN

Last updated