headers: { // 设置后端需要的传参类型 'Content-Type': 'application/json', 'X-Requested-With': 'XMLHttpRequest', }
时间: 2024-06-05 12:07:48 浏览: 101
$.ajax中contentType: “application/json” 的用法详解
这段代码中设置了请求头(headers)的内容。其中包括两个参数:
1. Content-Type: 表示发送的数据类型为application/json,即发送的数据是JSON格式的。
2. X-Requested-With: 表示发送的请求是XMLHttpRequest类型的,这个参数可以让后端服务器识别当前请求是通过Ajax方式发送的。
阅读全文