如何从Node.js调用PHP Web服务

时间:2012-03-20 12:49:20

标签: php web-services node.js

如何从node.js调用PHP Web服务。提前谢谢。

1 个答案:

答案 0 :(得分:3)

您可以使用node-httpclient向任何服务器执行get请求,不一定是PHP。

var client = new httpcli.httpclient();  
var url = "http://domain.com/get/bananas"
client.perform(url, "GET", function(result) {
// Result is the response of the server
}, null);