Postman中x-www-form-urlencoded请求K-V的ajax实现
在Postman中使⽤x-www-form-urlencoded,并且⽤K-V传值,但是在代码中⽤ajax来请求,传值⼀直有问题,静下⼼来思考才发现K-V传⼊的是string,所以记录下来以防忘记
在Ajax中需要将Value中的json转换为string:
let robotAuditStr = {"orderId":"","auditor":"","status":0, "type":2,"note":"test"};
$.ajax({
发送ajax请求的步骤url: `cloud.qiyi.domain/apis/audit/robotAudit`,
type: "POST",
contentType: "application/x-www-form-urlencoded",
data: {robotAuditStr: JSON.stringify(robotAuditStr)}
})

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。