温馨提示×

Server中contenttype属性怎么设置

小亿
140
2023-12-23 03:33:15
栏目: 编程语言

在Server中,可以通过设置Content-Type属性来指定响应的内容类型。以下是一些常见的Content-Type值及其对应的MIME类型:

  • text/plain:纯文本
  • text/html:HTML文档
  • text/css:CSS样式表
  • application/json:JSON数据
  • application/xml:XML数据
  • application/pdf:PDF文档
  • image/jpeg:JPEG图片
  • image/png:PNG图片
  • audio/mpeg:MP3音频
  • video/mp4:MP4视频

在代码中,可以使用response对象的setHeader()方法来设置Content-Type属性。示例代码如下:

response.setHeader("Content-Type", "text/html");
response.setHeader("Content-Type", "text/html")
response.setHeader("Content-Type", "text/html");
header("Content-Type: text/html");
response.Headers["Content-Type"] = "text/html";

以上代码将设置Content-Type属性为text/html,指示响应内容为HTML文档。根据需要,可以将Content-Type属性设置为其他值来指定不同的内容类型。

0