当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Express.js res.attachment()用法及代码示例


res.attachment()函数用于将HTTP响应Content-Disposition标头字段设置为‘attachment’。如果文件名以文件名形式给出,则它将通过res.type()函数根据扩展名设置Content-Type,最后设置Content-Disposition“ filename =”参数。

用法:

res.attachment( [filename] )

参数:filename参数描述文件的名称。

返回值:它重新调整对象。

快递模块的安装:



  1. 您可以访问安装Express模块​​的链接。您可以使用此命令安装此软件包。
    npm install express
  2. 安装Express模块​​后,可以使用命令在命令提示符下检查Express版本。
    npm version express
  3. 之后,您可以仅创建一个文件夹并添加一个文件,例如index.js。要运行此文件,您需要运行以下命令。
    node index.js

范例1: 文件名:index.js

var express = require('express'); 
var app = express(); 
var PORT = 3000; 
  
// Without middleware 
app.get('/', function(req, res){ 
    res.attachment('Hello.txt'); 
    console.log(res.get('Content-Disposition'));  
}); 
  
app.listen(PORT, function(err){ 
    if (err) console.log(err); 
    console.log("Server listening on PORT", PORT); 
});

将任何文件放在可以附加的项目的根目录中,就像这里我们使用Hello.txt一样。

运行程序的步骤:

  1. 项目结构将如下所示:
  2. 确保使用以下命令安装了Express模块​​:
    npm install express
  3. 使用以下命令运行index.js文件:
    node index.js

    输出:

    Server listening on PORT 3000
    
  4. 打开浏览器并转到http://localhost:3000 /,现在您可以在控制台上看到以下输出:
    Server listening on PORT 3000
    attachment; filename="Hello.txt"
    
  5. 范例2: 文件名:index.js

    var express = require('express'); 
    var app = express(); 
    var PORT = 3000; 
      
    // With middleware 
    app.use('/', function(req, res, next){ 
        res.attachment('GFG.txt'); 
        console.log(res.get('Content-Disposition'));  
        next(); 
    }) 
      
    app.get('/', function(req, res){ 
        console.log('Attachment Added');  
        res.send(); 
    }); 
      
    app.listen(PORT, function(err){ 
        if (err) console.log(err); 
        console.log("Server listening on PORT", PORT); 
    });

    使用以下命令运行index.js文件:

    node index.js

    打开浏览器并转到http://localhost:3000 /,现在您可以在控制台上看到以下输出:

    Server listening on PORT 3000
    attachment; filename="GFG.txt"
    Attachment Added
    

    参考: https://expressjs.com/en/5x/api.html#res.attachment




相关用法


注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Express.js res.attachment() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。