Linked Questions

129 votes
7 answers
316k views

Like many others, my website is using jQuery. When I open the developer tools, I see a warning that says that XMLHTTPRequest is deprecated because of its detrimental effects to the end user's ...
Edd's user avatar
  • 1,988
22 votes
1 answer
46k views

I'm at a loss for why I can't get jQuery to pass upload data seeing as the AJAX object appears to be configured correctly, and the correct Content-Type/MIME-Type headers are being sent. I've tried ...
Julian's user avatar
  • 1,406
0 votes
1 answer
5k views

I am trying to upload an image about 1.62MB to an end point written using flask. the request.files object is always empty. I've checked the following questions but no luck: Flask request.files is ...
Myonaiz's user avatar
  • 365
2 votes
1 answer
3k views

Trying to upload a file to server but the ImmutableMultiDict object is returning empty. upload.html <html> <head> <title>Upload File Ajax</title> <script type="text/...
mongotop's user avatar
  • 5,794
2 votes
1 answer
3k views

I use wtforms to handle forms. so i create form like this: class ProfileForm(Form): firstName = TextField(_('firstName'), [validators.Required(), validators.Length(min=3, max=45)]) lastName = ...
Mohammad Efazati's user avatar
2 votes
2 answers
1k views

It seems like a simple issue but its been hour now breaking my head on this. i have a form which accepts file from user submit to the server using ajax. Problem i am facing is in $(this).serialize() ...
Pradeep's user avatar
  • 243
1 vote
1 answer
2k views

I'm using the signature-pad JavaScript library to have people digitally sign documents (this is just for testing, nothing legally binding, etc.) but I'm having a hard time passing the signature result ...
BrettJ's user avatar
  • 1,236
0 votes
1 answer
991 views

The solution given here helps in uploading files asynchronously. When I change it to include both the files and some string data I'm unable to access both the string and the files. This is what I ...
rohithpr's user avatar
  • 6,350
1 vote
0 answers
2k views

In my project I use Flask framework and JS on the front end, now I want to use AJAX post method to send a image to server side and save the image. So far, based on some searching, I use FileReader() ...
Chris Bao's user avatar
  • 2,928
0 votes
1 answer
2k views

I want to be able to upload my file from javascript without using the typical HTML form so that the page doesn't have to refresh when uploading the file to python. I have not had any success getting ...
Noa Emien Ette's user avatar
0 votes
1 answer
2k views

I'm updating on updating an older project that uses AJAX and have decided to use Flask to do so. For the particular page I'm currently working on, I need to be able to upload a CSV and read the data ...
pwesterbaan's user avatar
0 votes
1 answer
161 views

I am making a small Flask app. For now, one of the functions I want to implement is that: upload an Excel file do some data cleaning by using pandas show the result dataframe on webpage by using AJAX ...
lucyf's user avatar
  • 145