尝试使用 node.js supertest 发布 multipart/form-data

Posted

技术标签:

【中文标题】尝试使用 node.js supertest 发布 multipart/form-data【英文标题】:Trying to post multipart/form-data with node.js supertest 【发布时间】:2015-10-31 18:11:52 【问题描述】:

我试图使用 Node.js supertest 来测试我编写的一些 REST API。我需要发送一个等效于以下 CURL 请求的请求:

curl -X POST -F api_key=KEY -F image=@my_file http://localhost:3000/v1/upload

我尝试了以下方法,但得到了Uncaught TypeError: first argument must be a string or Buffer

request.post('/v1/upload')
.type('form')
.field('api_key', 'abcd')
.attach('image', 'some path')
.end(function(err, res) 
  res.body.error.should.equal('Invalid username/api_key.');
  done();
);

我也试过这样发送:

request.post('/v1/upload')
.type('form')
.field('api_key', 'abcd')
.attach('image', 'some path')
.end(function(err, res) 
  res.body.error.should.equal('Invalid username/api_key.');
  done();
);

但是服务器只能解析文件上传请求,不能解析api_key

【问题讨论】:

【参考方案1】:

尝试从测试中删除 .type('form'),因为它会将application/x-www-form-urlencoded 设置为Content-Type,而不是multipart/form-data

【讨论】:

以上是关于尝试使用 node.js supertest 发布 multipart/form-data的主要内容,如果未能解决你的问题,请参考以下文章

测试受保护的 api 调用、mocha、supertest、node js、passport

Typescript / Node.js - 如何模拟集成测试的传递依赖项?

在 Typescript 中使用 Jest + Supertest 进行模拟

运行单元测试时如何抑制来自 node.js 应用程序的应用程序日志消息?

如何使用 superagent/supertest 链接 http 调用?

Node.js项目实战:从编写代码到服务器部署