Notice
Recent Posts
Recent Comments
Link
개발 무지렁이
[Spring Boot] toastr을 이용해서 성공메세지 보여주기 본문
toastr
[resources/static/resource/common/commons.js]
toastr.options = {
closeButton: false,
debug: false,
newestOnTop: false,
progressBar: false,
positionClass: "toast-top-right",
preventDuplicates: false,
onclick: null,
showDuration: "300",
hideDuration: "1000",
timeOut: "5000",
extendedTimeOut: "1000",
showEasing: "swing",
hideEasing: "linear",
showMethod: "fadeIn",
hideMethod: "fadeOut"
};
function successModal(msg) {
toastr["success"](msg);
}
[layout.html]
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
...
...
...
<script src="/resource/common/common.js"></script>
<script th:inline="javascript">
const params = /*[[ ${param} ]]*/ null;
if (params.msg) {
successModal(params.msg);
}
</script>
</body>
'Backend > 스프링부트' 카테고리의 다른 글
[Spring Boot] 여분의 필드 extra (0) | 2023.01.02 |
---|---|
[Spring Boot] 어노테이션 정리 - 1 (0) | 2022.12.31 |
[Spring Boot] Util클래스에서 URL 한글 인코딩하기 (0) | 2022.12.30 |
[Spring Boot] 결과보고서 RsData (0) | 2022.12.29 |
[Spring Boot] 업로드된 파일의 메타정보 (0) | 2022.12.27 |
Comments