FormData
对象(其内容是内存File
对象)。以下是一段成功实现此功能的Angular代码: // Create a temporary file
const blob = new Blob([response], { type: 'application/pdf' });
const file = new File([blob], reportName);
// Create request payload containing the file
const form = new FormData();
form.append('file', file);
// Send request
this.http.post(url, form, { headers });
FormData
,Blob
和File
。nodejs中上述代码的等效代码是什么? (我不想在B中的某个位置创建文件然后上传)
谢谢。