MIME Type
Multipurpose Internet Mail Extensions Type
MIME Type (Multipurpose Internet Mail Extensions) คือป้ายระบุมาตรฐานที่บ่งบอกประเภทและรูปแบบย่อยของไฟล์หรือข้อมูล เช่น text/html, application/json, image/png ช่วยให้เซิร์ฟเวอร์และเบราว์เซอร์ทราบวิธีจัดการข้อมูลอย่างถูกต้อง
รายละเอียดทางเทคนิค
MIME type ใช้รูปแบบ type/subtype (เช่น text/html, image/png) และอาจมีพารามิเตอร์ (เช่น text/html; charset=utf-8) ประเภทหลัก: application, audio, font, image, message, model, multipart, text, video การลงทะเบียนอย่างเป็นทางการจัดการโดย IANA ส่วนหัว HTTP Content-Type ใช้ MIME type เพื่อบอกเบราว์เซอร์ว่าจะจัดการเนื้อหาอย่างไร
ตัวอย่าง
```javascript
// MIME Type: web API example
const response = await fetch('/api/resource');
const data = await response.json();
console.log(data);
```