Jquery跨域调用C#的webService,在ajax请求中添加contentType: "application/json后,后台无法接收到参数

发布于 2021-11-30 14:33:29 字数 421 浏览 930 评论 1

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔少女心 2021-12-01 05:05:14

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文