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
I am try to submit a html form via ic-put-to, but the form is still submitted via POST method, here is my code:
<form class="form-inline" ic-put-to="/example" ic-target="#refresh_target"> input text etc..... <button type="submit" class="btn btn-info">Submit</button> </form>
Do I use it wrong?
The text was updated successfully, but these errors were encountered:
Hi Tony,
Intercooler will always use a POST when submitting the request, due to cross browser issues with AJAX requests for non-GET or POST requests.
We include two pieces of information to indicate the actual HTTP method:
_method
X-HTTP-Method-Override
Details can be found here:
http://intercoolerjs.org/docs.html#requests
Sorry, something went wrong.
Very clear explanation, thank you very much.
No branches or pull requests
I am try to submit a html form via ic-put-to, but the form is still submitted via POST method, here is my code:
Do I use it wrong?
The text was updated successfully, but these errors were encountered: