Jquery sends a Get request to /false
I'm trying to write a file uploader and jquery sends a get request to /false which returns as a 404 obviously. What is jquery trying to do? Should i implement a service at /false.?
EDIT:
开发者_开发问答The request gets sent out as soon as i select a file to upload. I'm using the jquery's file uploader plugin.
I dont think there is any variable for the url. But i'll check on it.
It sounds like you are using a variable name for where to send your request to, and for whatever reason that variable is literally false
. Change the variable value to where you want to send the request to. That's my guess.
精彩评论