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后,提示缺少参数
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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