我想通过在reactjs中使用axios将多个图像上传到数据库,以将数据从客户端发送到服务器端,并使用laravel在服务器端处理图像上传。我的问题是,每当我尝试在服务器端处理多个图像时,它都将不起作用。
这是我的代码。
客户端(ReactJS)
构造函数:
constructor(props){
super(props);
this.state = {
id: "upload-photo",
imageArray: [],
body: '',
posts: [],
// image: []
};
this.handleSubmit = this.handleSubmit.bind(this);
this.handleBodyChange = this.handleBodyChange.bind(this);
}
HanleFileChange:
handleFileChange(e){
if (e.target.files) {
const files = Array.from(e.target.files);
const promises = files.map(file => {
return (new Promise((resolve, reject) => {
const reader = new FileReader();
reader.addEventListener('load', (ev) => {
resolve(ev.target.result);
});
reader.addEventListener('error', reject);
reader.readAsDataURL(file);
}))
});
Promise.all(promises).then(images => {
this.setState({
imageArray: images
})
}, error => { console.error(error); });
}
if (this.props.onChange !== undefined) {
this.props.onChange(e);
}
}
HandleSubmitChange:
handleSubmit(e) {
e.preventDefault();
// this.postData();
const formData = new FormData();
this.state.imageArray.forEach((image_file) => {
formData.append('file[]', image_file);
});
formData.append('body', this.state.body);
for (let pair of formData.entries()) {
console.log(pair[0]+ ', ' + pair[1]);
}
axios.post('/posts', formData)
.then(response => {
this.setState({
posts: [response.data]
})
});
this.setState({
body: ''
});
}
服务器端(LARAVEL)
public function create(Request $request, Post $post) {
$data = [];
if ($request->get('file')) {
foreach ($request->get('file') as $file) {
$name = time() . '.' . explode('/', explode(':', substr($file, 0, strpos($file, ';')))[1])[1];
\Image::make($file)->save(public_path('images/') . $name);
array_push($data, $name);
}
}
$image = json_encode($data);
// create post
$createdPost = $request->user()->posts()->create([
'body' => $request->body,
'image' => $image
]);
// return the response
return response()->json($post->with('user')->find($createdPost->id));
}
我希望所有上传的图像都保存到数据库中。相反,它将引发错误:Invalid argument supplied for foreach()
。因此,如果我删除了foreach()循环并仅上载一张图像,它将成功保存该图像。如何利用循环保存多张图片?
更新
@DelenaMalan在下面的评论中回答了这个问题。我更新了此问题中的代码,以便其他搜索与此问题相关的答案的人可以使用该代码解决他们的问题。
答案 0 :(得分:1)
在前端,您可以使用formData.append('file[]', image_file)
将图像文件添加到表单数据中的file
数组中,例如:
this.state.imageArray.forEach((image_file) => {
formData.append('file[]', image_file);
});