我正在使用 Node.js 中的请求模块来执行放置请求。我的代码看起来像这样
var request = require('request');
var data = {foo: "bar", woo: "car"};
request({
method: 'PUT',
uri: myURL,
multipart: [{
'content-type':'application/json',
body: JSON.stringify(data)
}]
}, function(error, request, body){
console.log(body);
});
当我运行它时,我得到一个错误:
“类型不受支持的内容:application/json”