我正在尝试在客户端 javascript 上使用 superagent 向我的 nodejs 后端发出多部分表单发布请求。
只有 attach() 和 part() 方法会引发错误
我的代码如下:
superagent
.post('/api/audio')
.attach('file', '/music/music.mp3' )
.end(function(err, res){
console.log(res.text);
});
我根据他们的文档http://visionmedia.github.io/superagent/#multipart-requests编写了它,但它让我犯了一个错误:
Uncaught TypeError: superagent.post(...).attach is not a function
我哪里错了?