I heard that when i use jQuery.ajax and sending data as object – it automatically – escapes the chars.
where does it written ?
I didnt find it in Documentation
is it true ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Inside the source code, a local function
addis defined:This function prepares any input by escaping the special characters. When an object is passed as an argument, the
buildParamsmethod is invoked, passing the just-definedaddfunction:Inside the recursive function
buildParams, theaddmethod is invoked for each object-parameter. The flavours differ, but are generally in the following format:Relevant code, derived from the source code: