1. 首页
  2. 考试认证
  3. 其它
  4. content types 处理多种内容类型

content types 处理多种内容类型

上传者: 2024-10-13 17:59:04上传 ZIP文件 3.57KB 热度 1次
内容类型处理多种内容类型例子var http = create("http") , contentTypes = require("content-types") http.createServer(function () { contentTypes(req, { "text/html": returnHtml , "application/javascript": returnJson })(req, res) }).listen(8080) function returnHtml(req, res) { res.end("
  • foo
  • bar
") } function returnJson(req, res) { res.end(JSON.stringify
下载地址
用户评论