We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When can-ajax is used with the PATCH method, the body payload should append to the request body, not the url query string.
can-ajax
PATCH
POST
PUT
ajax({ url: ``${loader.serviceBaseURL}/carrito_articulo?${pk.toString()}``, type: 'PATCH', data: {foo: 'bar'} })
The text was updated successfully, but these errors were encountered:
I think we have to change line 221
from
var isPost = type === "POST" || type === "PUT"
to
var isPost = type === "POST" || type === "PUT" || type === "PATCH"
I tried it locally and works as expected.
Sorry, something went wrong.
No branches or pull requests
When
can-ajax
is used with thePATCH
method, the body payload should append to the request body, not the url query string.POST
andPUT
are working as expected, but sending a JSON payload withPATCH
is not.ajax({ url: ``${loader.serviceBaseURL}/carrito_articulo?${pk.toString()}``, type: 'PATCH', data: {foo: 'bar'} })
The text was updated successfully, but these errors were encountered: