6. SAP UI5 Component.js Configuration

SAP UI5 Component.js Configuration 이번 단계에서는 Component.js를 활용하여 application 전체에 공통으로 사용 가능한 Model, Function 등을 관리하여 Application의 동작을 더욱 유연하게 할 수 있다. 추가적으로 이 단계에서 모든 UI 자산을 index.html 파일과 독립적인 구성 요소로 캡슐화 한다. 이 아키텍처 변경을 통해 Application은 정적 인덱스.html 페이지보다 더 유연한 환경에서 사용할 수 있다. (In this step, you can use Component.js to manage models and functions that can be used in common throughout the application to make the application more flexible. Additionally, at this step, all UI assets are encapsulated into independent components of the index.html file. This architectural change allows the application to be used in a more flexible environment than a static index.html page.) 실행결과(Results of this step) 이전 단계의 결과와 동일한 UI와 동작을 보여준다. 단, 이번 단계는 Application 내부적인 동작을 좀 더 유연하게 관리하기 위한 단계이다. (It shows the same UI and operation as the result of the previous step. However, this step is to manage the internal operation of the application more flexibly.) 실행 순서(Order of execution of this step): C...