-
Notifications
You must be signed in to change notification settings - Fork 20.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question mark is replaced by 'jQuery1520046861610282212496_1411972375451'. #1799
Comments
Comment author: dmethvin We should either document this or fix it so that it only does so for the currently-documented case of jsonp. |
@jaubourg As I read the docs, we should only be replacing |
This is due to the fact Fix would be to test the presence of the placeholder in Not that I think this would be used as much as in the |
I encountered a similar issue as well. It exists in the latest version of jQuery too. |
After further review, I don't think we want to break the ability to promote |
Opened docs issue: jquery/api.jquery.com#878. |
jQuery ajax requests containing multiple '?' get replaced with a string similar to jQuery152330039032_1231231, this is because it is processing a stringified data object as jsonp and thinks its a url. workaround is to add contenttype see jquery/jquery#1799
jQuery ajax requests containing multiple '?' get replaced with a string similar to jQuery152330039032_1231231, this is because it is processing a stringified data object as jsonp and thinks its a url. workaround is to add contenttype see jquery/jquery#1799
jQuery ajax requests containing multiple '?' get replaced with a string similar to jQuery152330039032_1231231, this is because it is processing a stringified data object as jsonp and thinks its a url. workaround is to add contenttype see jquery/jquery#1799
When submitting a LevelGroup solution with "??" (no quotes) in a free response, it was being turned into a weird timestamp by Jquery. By setting "jsonp: false" explicitly, we disable this behaviour. References: jquery/api.jquery.com#878 jquery/jquery#1799 https://bugs.jquery.com/ticket/8417
Previously, `jQuery.ajax` with `dataType: 'json'` with a provided callback was automatically converted to a jsonp request unless one also specified `jsonp: false`. Today the preferred way of interacting with a cross-domain backend is CORS which works in all browsers jQuery 4 will support. Auto-promoting JSON requests to JSONP ones introduces a security issue as the developer may be unaware they're not just downloading data but executing code from a remote domain. This commit disables the auto-promoting logic. BREAKING CHANGE: to trigger a JSONP request, it's now required to specify `dataType: "jsonp"`; previously some requests with `dataType: "json"` were auto-promoted to JSONP. Fixes jquerygh-1799 Fixes jquerygh-3376
Previously, `jQuery.ajax` with `dataType: 'json'` with a provided callback was automatically converted to a jsonp request unless one also specified `jsonp: false`. Today the preferred way of interacting with a cross-domain backend is CORS which works in all browsers jQuery 4 will support. Auto-promoting JSON requests to JSONP ones introduces a security issue as the developer may be unaware they're not just downloading data but executing code from a remote domain. This commit disables the auto-promoting logic. BREAKING CHANGE: to trigger a JSONP request, it's now required to specify `dataType: "jsonp"`; previously some requests with `dataType: "json"` were auto-promoted to JSONP. Fixes gh-1799 Fixes gh-3376 Closes gh-4754
Originally reported by wjj871125 at: http://bugs.jquery.com/ticket/15249
Code as follows:
Code ends.
When the parameter 'content' value is '?' or '??', its content is replaced by similar content as 'jQuery1520046861610282212496_1411972375451'.
jQuery code
jQuery code end.
These codes maybe need to optimize.
Issue reported for jQuery 1.5.2
The text was updated successfully, but these errors were encountered: