Node.js - 带有'request'模块的PUT

时间:2014-01-27 23:12:19

标签: javascript node.js http-put

我正在使用Node.js中的请求模块来执行put请求。我的代码看起来像这样

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”

1 个答案:

答案 0 :(得分:35)

试试这样:

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