I want to send PDF/Docs files in axios service along with other JSON data. I have refered (Ajax post a file from a form with Axios) but it only sends file without any JSON data.
field_value: {}, // here it shows empty object,but it should show File Object
field_type: "file_upload",
is_file_upload: true
}
when I console the object before sending request than it shows me a file object in FormData() but it show empty braces when is see it in post request.