We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
프로젝트 초반에 정규표현식을 잘못 짜서 생기는 문제
tag
속성값
trim()
undifined
null
공백
false
function
anonymous
member
method
data
object
string
parsing
trim
undefined
Data 가공
Render
Parsing
The text was updated successfully, but these errors were encountered:
kkn1125
ohoraming
No branches or pull requests
Review
Data 가공 단계
tag
명,속성값
그룹마다trim()
(공백 제거)을 했어야 했음undifined
,null
,공백
,false
등의 예외 처리를 생각했어야 했음function
의 경우,undifined
는anonymous
로 처리하기rendering 문제
member
와method
를 후처리하는데서 오는 부담이 커짐parsing 단계 중의 문제
data
를 가공하면서 최종 단계에서object
가 아닌string
으로parsing
하면서data
를 사용하기 어렵게 만들어버림trim
과undefined
처리를 해버림해결책
Data 가공
나머지를 js로 처리하기로 함
Render
member
와method
를 각각 처리해야 함Parsing
The text was updated successfully, but these errors were encountered: