tuandm / laravue

Admin dashboard for enterprise Laravel applications built by VueJS and Element UI https://laravue.dev
https://laravue.dev
MIT License
2.21k stars 654 forks source link

How to upload file to server? #274

Closed vulam8x closed 3 years ago

vulam8x commented 3 years ago

I got the 'fileName' passed from vuejs, but can't upload the 'file' to the server via categoryController.

currentCategory: { name: '', file: '', fileName: '', },

dropzoneS(file) { // this.$message({ message: file.name, type: 'success' }); this.currentCategory.fileName = file.name; this.currentCategory.file = file; },

vulam8x commented 3 years ago

I'm Done!