elesis's haunt

[JavaScript] Uncaught TypeError: URL.createObjectURL is not a function 본문

HTML, CSS, JavaScript

[JavaScript] Uncaught TypeError: URL.createObjectURL is not a function

elesis 2022. 3. 16. 20:30
document.getElementById('file-image').src = URL.createObjectURL(file);

해당 코드의 URL.createObjectURL의 문제이다.

 

document.getElementById('file-image').src = webkitURL.createObjectURL(file);

URL을 webkitURL로 변경하면 잘 동작한다.

'HTML, CSS, JavaScript' 카테고리의 다른 글

[JavaScript] 백틱(`)  (0) 2021.03.20
Comments