반응형
Failed to construct 'Blob': The provided value cannot be converted to a sequence.
해석해도 뭔소린지 모를ㄹㅇ 암튼 blob 파라미터에 [] 이거 감싸서 제대로 넣었나 체크해보면 댐.
// 에러
URL.createObjectURL(new Blob('../Images/plg2.jpg', { type: "text/css" }))
// 올바른
URL.createObjectURL(new Blob(['../Images/plg2.jpg'], { type: "text/css" }))
'Javascript' 카테고리의 다른 글
Cannot read properties of null (reading 'includes') 에러 문구 (0) | 2023.01.18 |
---|---|
iframe 내에서 일부 폰트가 적용되지 않을 때 (0) | 2023.01.17 |
Promise.all 쓸때 에러 (0) | 2023.01.10 |
음수 숫자를 양수로 바꾸기 (0) | 2022.10.11 |
배열에서 중복된 값 제외하는 방법 (0) | 2022.09.29 |