BT编程语言文档
header
设置web表头Content-Type
默认为text/html; charset=utf-8
,所以Web中无需设置
语法 http.header(header_info:Object)
header_info:必填,用于设置web的表头信息
// 页面重定向:使用 header()函数实现页面跳转,例如: http.header({Location: 'https://www.example.com'}) // 设置内容类型:例如,设置响应的内容类型为JSON: http.header({'Content-Type': 'application/json'}); // 防止页面缓存:可以通过设置响应头信息来禁止客户端缓存页面: http.header({ 'Cache-Control': 'no-cache, must-revalidate' 'Expires': 'Sat, 26 Jul 1997 05:00:00 GMT' }); // 文件下载:可以使用 header()函数来实现文件下载功能: http.header({ 'Content-Type': 'application/octet-stream' 'Content-Disposition': 'attachment; filename="example.zip"' 'Content-Length': fs('example.zip').size() });