BLOB 개체는 변경 불가능하고 원시 데이터를 나타내는 데 사용되는 Blob 개체를 나타내는 데 사용됩니다. Blob에는 파일과 마찬가지로 크기 및 MIME 유형 속성이 있습니다. 파일은 blob의 파생물이며 blob은 파일이 사용되는 곳에서 사용할 수 있습니다.
다음은 JavaScript에서 blob 객체를 보여주는 코드입니다 -
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result{ font-size: 18px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>Blob object in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to create and display a blob object</h3> <script> let resEle = document.querySelector(".result"); document.querySelector(".Btn").addEventListener("click", () => { let blob = new Blob(["This is a sample blob"], { type: "text/plain" }); resEle.innerHTML = "blob.type = " + blob.type + "<br>"; resEle.innerHTML += "blob.size = " + blob.size; }); </script> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
'여기를 클릭' 버튼을 클릭하면 -