[UI5] Modules

토마토·2024년 7월 15일

UI5

목록 보기
6/9

🔗 Modules

alert가 아닌 MessageToast로 표현하기
모듈을 로드하기 위해 sap/m/MessageToast 패키지를 배열에 추가

View

<Button text="또 다른 메세지" press="onMsg2" icon="sap-icon://comment"/>

Controller

sap.ui.define([
    "sap/ui/core/mvc/Controller",
    "sap/m/Text",
    "sap/m/MessageToast"
],
function (Controller, Text, MessageToast) {
    "use strict";

    return Controller.extend("js.edu.jsedu.controller.View1", {
        onInit: function () {
        },

        onMsg2: function(){
            MessageToast.show("");
            //constructor(생성자 new)가 없음
        }
    });
});
profile
멋쟁이 토마토

0개의 댓글