-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refine search by query #1
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
대충 어케 할지 감이 왓서요 감사합니다
src/app.ts
Outdated
({ area, city }) => { | ||
if (searchMethod(city, maybe_city)) { | ||
if (chunks.length > 0) { | ||
return searchMethod(area, chunks.join(' ')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
막 창원 마산합포
도 되게 해주세요(?
사실 이걸 윾이에 넣을 악랄한 계획을 가지고 있었는데 HTTP 리퀘스트 양 보고 접었습니다 |
(area && searchMethod(area, areaname)) || | ||
(city && searchMethod(city, areaname)), | ||
({ area, city }) => { | ||
const spaceless_area = area.replace(/ /g, '') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
음믕 이걸로 되나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
양쪽 다 창원 마산합포
를 창원마산합포
로 만들고 비교하니까 될겁니다. 그래도 영 미덥지 않다면 fuzzy search 써야겠죠
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
호에
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
하지만하지만 저장되는 건 창원시 마산합포구
인 걸요
No description provided.