http content-type總結

看風景就發表於2017-05-15

content-type 媒體型別,即MIME型別,包括媒體格式和編碼兩部分

例如:Content-Type:text/html;charset:utf-8

常見的媒體格式型別如下:

text/html : HTML格式
text/plain :純文字格式
text/xml : XML格式
image/gif :gif圖片格式
image/jpeg :jpg圖片格式
image/png:png圖片格式

以application開頭的媒體格式型別:

application/xhtml+xml :XHTML格式
application/xml : XML資料格式
application/atom+xml :Atom XML聚合格式
application/json : JSON資料格式
application/pdf :pdf格式
application/msword : Word文件格式
application/octet-stream : 二進位制流資料(如常見的檔案下載)
application/x-www-form-urlencoded : <form encType=””>中預設的encType,form表單資料被編碼為key/value格式傳送到伺服器(表單預設的提交資料的格式)
另外一種常見的媒體格式是上傳檔案之時使用的:

multipart/form-data : 需要在表單中進行檔案上傳時,就需要使用該格式

以上就是我們在日常的開發中,經常會用到的若干content-type的內容格式。

相關文章