问题
I'm trying to avoid jQuery and would like to use a native solution. How can I POST with JSONP?
回答1:
You can't.
JSONP works via inserting a <script>
tag in the page, which then allows data to be retrieved from the remote server. Obviously there's no way to POST
a <script>
tag.
来源:https://stackoverflow.com/questions/9811478/can-i-do-a-jsonp-request-with-post