Dojo 의 두 가지 코딩 방법 Dojo는 위젯을 불러올 때 두 가지 스타일인 declarative와 programmatic이 존재한다. programmatic의 경우 javascript를 사용하여 object를 생성하고 해당 object에 대한 function이나 attribute를 설정한다. declarative의 경우 html 처럼 프로그램을 작성하고 뒤에 특정 attribute를 더해서 Dojo위젯을 불러온다. 자세히 말하자면 dojo/parser를 이용하여 해당 페이지의 DOM을 parsing 한 뒤 special attribute와 script의 tag를 해석하여 평범한 html code를 dojo의 widget으로 확장시킨다. declarative가 쓰기 쉽고 page를 작성하는데 있어서 더..