saivarunk / vue-simple-upload

Simple File upload component for Vue.js
https://saivarunk.github.io/vue-simple-upload/
MIT License
148 stars 30 forks source link

How does Ajax take parameters when I upload a file? #25

Open Popxie opened 3 years ago

Popxie commented 3 years ago
<FileUpload 
    target="http://localhost:8000/api/upload"
    action="POST"
    v-on:progress="progress" 
    v-on:start="startUpload" 
    v-on:finish="finishUpload" />

How does Ajax take parameters when I upload a file? The README is not present!

56