您好,我无法从后端nodejs我将文件上传到bandi
bodyFormData.append('files.image', fs.createReadStream(req.file.path), req.file.filename);
bodyFormData.append('data', JSON.stringify(data));
并使用axios创建发布请求
axios({
url:`${strapi}/campaigns`,
method:'post',
data:bodyFormData,
withCredentials:true,
})
.then(response=>{
console.log(response.data)
// return res.status(200).send(response.data)
})
.catch(err=>{
res.status(400).send(err)
})
这是我的console.log(bodyFormData)
FormData {
[0] _overheadLength: 288,
[0] _valueLength: 272,
[0] _valuesToMeasure: [],
[0] writable: false,
[0] readable: true,
[0] dataSize: 0,
[0] maxDataSize: 2097152,
[0] pauseStreams: true,
[0] _released: false,
[0] _streams: [
[0] '----------------------------167862620653181372969530\r\n' +
[0] 'Content-Disposition: form-data; name="files.image"; filename="1582728780533-fancy-bottom-border.png"\r\n' +
[0] 'Content-Type: image/png\r\n' +
[0] '\r\n',
[0] 'public\\1582728780533-fancy-bottom-border.png',
[0] [Function: bound ],
[0] '----------------------------167862620653181372969530\r\n' +
[0] 'Content-Disposition: form-data; name="data"\r\n' +
[0] '\r\n',
[0] '{"title":"123`${strapi}/campaigns`","description":"`${strapi}/campaigns`","author":{"id":62},"reference":30939226,"goal":"123","verified":false,"deleted":false,"requested":false,"raised":0,"username":"cjoyales","currency":"USD"}',
[0] [Function: bound ]
[0] ],
[0] _currentStream: null,
[0] _insideLoop: false,
[0] _pendingNext: false,
[0] _boundary: '--------------------------167862620653181372969530'
[0] }
但这是来自stradi的console.log(response.data)
{
[0] id: 176,
[0] title: '',
[0] description: '',
[0] goal: 0,
[0] raised: null,
[0] username: null,
[0] created_at: '2020-02-26T14:53:00.000Z',
[0] updated_at: '2020-02-26T14:53:00.000Z',
[0] verified: null,
[0] deleted: null,
[0] author: null,
[0] reference: null,
[0] currency: null,
[0] requested: null,
[0] done: null,
[0] image: [],
[0] supporters: []
[0] }
为什么即使表单数据中有值也为空或为空?有人可以帮忙吗?谢谢
答案 0 :(得分:0)
尝试替换
bodyFormData.append('files.image', fs.createReadStream(req.file.path), req.file.filename);
使用
bodyFormData.append('files', fs.createReadStream(req.file.path), req.file.filename);
我努力工作了几个小时,直到读了Pavlo Razumovskyi的评论here:
现在是新API,请检查新文档: trapi.io/documentation/3.0.0-beta.x/plugins/… formData.append('files.MODEL_FILE_FIELD_NAME',blob,文件名)