node-rest-client POST Vs.放

时间:2014-12-18 05:05:55

标签: node.js express npm

有人使用过node-rest-client吗?对于POST和PUT方法,它说“要使用POST或PUT方法将数据发送到远程站点,只需向args对象添加数据属性:”那么如何区分POST调用和PUT调用?

1 个答案:

答案 0 :(得分:3)

要发出put请求,您只需使用put方法,而不是postget方法。

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);
    });