代码
<script type="text/javascript">
var worknum = prompt("请输入流程单号", "流程单号");
if (worknum != null && worknum != "") {
var ntp = prompt("请输入人数", "人数");
if (ntp != null && ntp != "") {
var json=JSON.stringify(JSON.stringify({
"num":worknum
,"qty":ntp
}))
console.log(json)
$.ajax({
type: "post",
url: "这是url",
data: json,
dataType: "json",
contentType: "application/json",
success: function () {
}
//加序号
})
}
}
请问一下这是为什么
400 意思 Bad request, 一般请求参数没满足后端要求,会报这个错误,你检查下你的参数传递吧。