--- src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp
... | ... | @@ -1265,7 +1265,9 @@ |
| 1265 | 1265 |
|
| 1266 | 1266 |
|
| 1267 | 1267 |
var url = "/web/mjon/msgdata/sendMsgDataAjax_advc.do"; |
| 1268 |
- |
|
| 1268 |
+ // 시작 시간 |
|
| 1269 |
+ const startTime = new Date(); |
|
| 1270 |
+ |
|
| 1269 | 1271 |
$.ajax({
|
| 1270 | 1272 |
type: "POST", |
| 1271 | 1273 |
url: url, |
... | ... | @@ -1273,6 +1275,12 @@ |
| 1273 | 1275 |
contentType: 'application/json', |
| 1274 | 1276 |
dataType: 'json', |
| 1275 | 1277 |
success: function (data) {
|
| 1278 |
+ |
|
| 1279 |
+ // 종료 시간 |
|
| 1280 |
+ const endTime = new Date(); |
|
| 1281 |
+ const elapsed = (endTime - startTime) / 1000; // 밀리초 -> 초로 변환 |
|
| 1282 |
+ console.log(`경과 시간: ${elapsed}초`);
|
|
| 1283 |
+ |
|
| 1276 | 1284 |
console.log('data : ', data);
|
| 1277 | 1285 |
/* message:"특정문구 일괄변환 치환문자 데이터가 없습니다." |
| 1278 | 1286 |
status:"BAD_REQUEST" */ |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?