このようなNode.jsで呼び出しを行いたいです(node.jsにcoffeescriptを使用しています)
test = [] //initially an empty array
list = []//an array with 10 json object
for li in list
get_data url , li, (err,data) -> test.push data
私の get_data メソッドは次のようになります
get_data: (url, json_data, callback) ->
throw "JSON obj is required" unless _.isObject(json_data)
post_callback = (error, response) ->
if error
callback(error)
else
callback(undefined, response)
return
request.post {url: url, json: json_data}, post_callback
return
問題は、request.post からの結果を 'test' 配列 に収集できないことです