엑셀 열짤려서 업로드 되는거랑 다운로드시 카테고리 두개이상이면 코드로 나오던거 수정했습니당

This commit is contained in:
leeheejin
2026-01-21 09:25:21 +09:00
parent 7039cca1cf
commit a55115ac48
3 changed files with 62 additions and 14 deletions

View File

@@ -116,8 +116,10 @@ export async function importFromExcel(
return;
}
// JSON으로 변환
const jsonData = XLSX.utils.sheet_to_json(worksheet);
// JSON으로 변환 (빈 셀도 포함하여 모든 컬럼 키 유지)
const jsonData = XLSX.utils.sheet_to_json(worksheet, {
defval: "", // 빈 셀에 빈 문자열 할당
});
console.log("✅ 엑셀 가져오기 완료:", {
sheetName: targetSheetName,