모바일 메뉴 열기 모바일 메뉴 닫기
 

상명대학교상명대학교

 
닫기

Calendar

잘 살폈다! 상명, 비교과 프로그램 이수와 마일리지 관리도 꼼꼼히 살펴주고. 내 이력서와 포트폴리오 관리도 일일이 살펴주고. 상명은 울 엄마 같은 따뜻한 보살핌이다.

 

대학현황 상명소개

자체종합평가 게시판
게시글 검색
Total 31, 1 / 4
"; element.outerHTML = combinedData; //await sendChunksToServer(chunks); // 서버로 청크 전송 }); document.getElementById('translateBtnC').addEventListener('click', async function () { //const htmlContent = document.documentElement.outerHTML(); // 현재 렌더링된 HTML 추출 let element = document.querySelector("div.container"); if(element == null){ element = document.querySelector("section.content-wrap"); } const htmlContent = element.outerHTML; const chunkSize = 1000; // 1KB 단위로 청크 분할 const chunks = splitHtmlIntoChunks(htmlContent, chunkSize); console.log('Total chunks:'+ chunks.length); // 디버깅용 출력 console.log(chunks); //await sendChunks(chunks,'en'); // 호출 및 페이지 업데이트 sendChunks(chunks, 'zh-CN').then(allData => { if (allData.length === 0) { console.error('No data received from the server.'); return; } // 응답 데이터 확인 (디버깅) console.log('Fetched Data:', allData); // 데이터를 HTML 문자열로 합침 const combinedData = allData.map(item => item.translatedHtml).join(''); if (!combinedData) { console.error('Combined data is empty. Check the response structure.'); return; } element.outerHTML = combinedData; // 현재 페이지 내용을 변경 }); //await sendChunksToServer(chunks); // 서버로 청크 전송 });