我有嘗試將異步函數轉換爲同步的問題。NodeJS:請求異步,同步,api的問題
這裏是從類中的方法:
doPost: function(call, data) {
var uri = 'http://localhost/api/'+call;
var api = http.createClient(80, 'localhost');
var domain = 'localhost';
var request = api.request("POST", uri,
{'host' : domain,
'Content-Type' : 'application/x-www-form-urlencoded',
"User-Agent": this.userAgent,
'Content-Length' : data.length
});
request.write(data);
request.end();
request.on('response', function (response) {
response.on ('data', function (chunk) {
sys.puts(chunk);
try {
var result = JSON.parse(chunk);
//------------ the problem
return HOW_TO_RETURN_RESULT;
//------------ /the problem
}catch (err) {
return {'ok': 0, 'err': err}
}
});
});
},
想以這種方式來使用此功能:
result = obj.doPost('getSomeData.php', '&data1=foo&data2=bar');
Reagards
湯姆
我讀了node.js中的「promise」,但找不到適合我的代碼的任何示例。 – Tom 2011-01-09 13:14:10
承諾幾乎是變相的回調 – Jakob 2011-01-09 13:16:34