26

我正在使用 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”

4

1 回答 1

39

试试这样:

request({ url: url, method: 'PUT', json: {foo: "bar", woo: "car"}}, callback)

于 2014-01-27T23:22:00.033 回答