有人使用过node-rest-client吗?对于POST和PUT方法,它说“要使用POST或PUT方法将数据发送到远程站点,只需向args对象添加数据属性:”那么如何区分POST调用和PUT调用?
答案 0 :(得分:3)
要发出put
请求,您只需使用put
方法,而不是post
或get
方法。
client.put("http://remote.site/rest/xml/method", function(data, response){
// parsed response body as js object
console.log(data);
// raw response
console.log(response);
});