响应的Content-Type
时间: 2024-04-09 14:05:36 浏览: 76
response.setContentType
Content-Type 是指在 HTTP 请求或响应中,用于指定实体正文的媒体类型的头部字段。常见的 Content-Type 类型有:
1. text/plain:纯文本类型。
2. text/html:HTML 文档类型。
3. application/json:JSON 数据类型。
4. application/xml:XML 数据类型。
5. image/jpeg:JPEG 图片类型。
6. audio/mp3:MP3 音频类型。
7. video/mp4:MP4 视频类型。
根据具体的需求和数据类型,可以选择适当的 Content-Type 进行设置。
阅读全文