我创建了用于上传图片的api,它适用于邮递员,但是在Android上使用Multipart数据找不到响应。
这是我的摘录
if ($request->hasFile('attachment')) {
$file = $request->file('attachment');
$filename = $file->getClientOriginalName();
$attachmentName = 'bookingfee_' . $bookingData->salesforce_id . '_' . md5($filename) . '.' . $file->getClientOriginalExtension();
$file->move('attachment/', $attachmentName);
$bf = BookingFee::find($bookingfee_id);
$bf->attachment = $attachmentName;
$bf->save();
} else {
$this->result['message'] = 'File not found';
return $this->result;
}
对此有什么线索吗?我应该添加一些东西到我的控制器吗? 在我的合作伙伴代码上,始终返回“找不到文件”。 我使用POST方法