chmln / vue-wysiwyg

A lightweight WYSIWYG HTML editor for Vue.js
https://chmln.github.io/vue-wysiwyg/
MIT License
555 stars 134 forks source link

Content-Type isn't multipart/form-data #93

Closed mytc closed 5 years ago

mytc commented 5 years ago

Why when I try to upload the server give me this error.

This is my configure:

Vue.use(wysiwyg, {
    hideModules: { "code": true,"removeFormat":true },
        image: {
        uploadURL: "http://localhost:8080/uploads",
        dropzoneOptions: {
             acceptedFiles:"image/*",
             dictDefaultMessage: "Please Upload"
        }
    },
    maxHeight: "450px"
}); 

Any Idea?

mytc commented 5 years ago

I found it. It was my server problem.