所以我一直在尝试使用 Vue JS 在服务器端使用 Laravel 上传多个图像文件。
我的模板Vue
<input type="file" id = "file" ref="file" v-on:change="onImageChange" multiple />
我的Javascript代码
<script>
export default {
data(){
return{
product: {},
image: '',
}
},
created() {
let uri = `/api/product/edit/${this.$route.params.id}`;
this.axios.get(uri).then((response) => {
this.product = response.data;
});
},
methods:{
onImageChange(e){
let files = e.target.files || e.dataTransfer.files;
if (!files.length)
return;
this.createImage(files[0]);
},
createImage(file){
let reader = new FileReader();
let vm = this;
reader.onload = (e) => {
vm.image = e.target.result;
};
reader.readAsDataURL(file);
},
replaceByDefault(e) {
e.target.src = this.src='/uploads/products/default_image.jpg';
},
saveImage(e){
e.preventDefault()
var file = document.getElementById('file').files;
let formData = new FormData;
formData.append('productId', this.product.id)
formData.append('file', file[0])
axios.post('/api/product/image/add', formData, {
headers: {'Content-Type': 'multipart/form-data'}
}).then((response) => {
this.$router.push({name: 'view',params: { id: this.product.id }});
});
}
}
}
</script>
我在互联网的某个地方看到,可以随时使用 formData.append 循环,但是如何在服务器端捕获数据。这是我的 ProductController
$saveImage = new Gallery;
$saveImage->product_id = $request->productId;
$file = request()->file('file');
$file_name = time().$file->getClientOriginalName();
$path = $imgUpload = Image::make($file)->save(public_path('/uploads/products/' . $file_name));
$saveImage->path = '/uploads/products/'.$file_name;
$saveImage->status = 1;
$saveImage->save();
return "success";
非常感谢你们!
答案 0 :(得分:0)
您可以使用request()->file('file')
来获取文件。但是当您尝试发送文件数组时,必须在vue源中添加一些更改。
Vue
let formData = new FormData;
formData.append('productId', this.product.id)
// append files
for(let i=0; i<file.length; i++){
formData.append('file[]', file[i])
}
使用file[]
代替file
将在请求有效负载中生成文件数组。
然后在代码的laravel端,您可以使用request()->file('file')
获取该文件数组。但是如果您只想要其中一个(例如:第一个),则可以使用request()->file('file.0')
来获取该文件。