http的響應類型對應的是http消息頭Contont-Type:mimetype
這里消息頭中對應的mimetype必須是mime類型,比如text/html,image/png,application/json等等
可以是用mime的npm包進行轉換
在http.Server中回調函數http.ServerResponsse類中使用setHeader('Content-Type','text/html');可以設置具體的mime類型,響應數據也必須設置對應格式的數據,不然瀏覽器無法正確解析。