Can I do a JSONP request with POST?

余生颓废 提交于 2020-01-16 07:18:07

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!