Why is the name qqfile used in file upload examples?

I noticed that this seems to be an unwritten convention that when sending a file to the server, the file in the qqfile request is called. Googling away I cannot find any explanation as to why "qqfile" was chosen.

Is there any reason related to the story why this name is used?

+5
source share
1 answer

Since one of the popular components of AJAX file upload uses a namespace qqand parameter qqfile. The filenamespace prefix should probably avoid collisions with other parameters in the form. I don’t know why the author preferred qqas a namespace for his component, although it is neither like downloading a file nor its website valums.com. He might want something short, like $, which does not conflict with existing popular libraries.

https://github.com/valums/file-uploader

+4
source

All Articles