私はちょうどヘッドアップ、CoffeeScript
を使用しています:expressJSでは、resとreqは関数に渡されますか?
searchResults = (err, data)->
res.write 'hello'
console.log data
console.log 'here'
return
exports.search = (req, res) ->
res.writeHead 200, {'Content-Type': 'application/json'}
location = req.param 'location'
item = req.param 'item'
geoC = googlemaps.geocode 'someaddress', (err, data) ->
latLng = JSON.stringify data.results[0].geometry.location
myModule.search latLng, item, searchResults
return
return
がsearchResults
機能を約res
を知らないので、どのように私は、ブラウザにデータを返すことができますか?