Jquery跨域调用C#的webService,在ajax请求中添加contentType: "application/json后,后台无法接收到参数
ajax请求如下:
var tempParam = { Types: 'Category_Name', Values:1, }; $.ajax({ type : "post", contentType: "application/json", data : tempParam, url : "http://192.168.253.46:8888/Service/Login.asmx/test", dataType : "json", success : function(json) { alert(json);此webservice需要接收参数,但是加上contentType后,提示缺少参数
https://api.jquery.com/jQuery.ajax/
contentType : ...Note: For cross-domain requests, setting the content type to anything other than application/x-www-form-urlencoded, multipart/form-data, or text/plain will trigger the browser to send a preflight OPTIONS request to the server.
估计提示缺少参数的请求是那个OPTIONS请求吧.
更多:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Preflighted_requests
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。