【发布时间】:2011-09-05 11:01:18
【问题描述】:
有这样的 XML 响应:
app.post '/incoming', (req,res) ->
console.log "Hello, incoming call!"
message = req.body.Body
from = req.body.From
sys.log "From: " + from + ", Message: " + message
twiml = '<?xml version="1.0" encoding="UTF-8" ?>\n<Response>\n<Say>Thanks for your text, we\'ll be in touch.</Say>\n</Response>'
res.send twiml, {'Content-Type':'text/xml'}, 200
我可以根据条件拥有不同的 .XML 文件和 res.send 文件吗?
【问题讨论】:
标签: javascript xml node.js coffeescript