我需要发送请求。如果我复制了这个请求并在邮递员身上执行了它就可以了。邮差将其作为raw
发送。无论如何我可以将我的formData对象转换为raw
吗?
我尝试使用lib npm i form-urlencoded
和encodeURI
,但两者都没有用。
我需要将对象转换为raw type
。我该怎么办?
答案 0 :(得分:0)
没有raw
内容类型。
我刚测试邮递员中的raw
选项并发送到虚拟netcat
服务器。
请求以Content-Type: text/plain;
如果您需要发送application/x-www-form-urlencoded
,请使用以下功能示例(from here)修改您的对象:
serialize = function(obj) {
var str = [];
for (var p in obj)
if (obj.hasOwnProperty(p)) {
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
}
return str.join("&");
}