gpt4 book ai didi

javascript - Node.js:从不同文件发送 XML 响应

转载 作者:行者123 更新时间:2023-11-28 21:17:01 24 4
gpt4 key购买 nike

有一个 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 它们吗?

最佳答案

当然;你用的是Express,对吧?使用res.sendfile:

app.post '/incoming', (req,res) ->
console.log "Hello, incoming call!"
message = req.body.Body
from = req.body.From
sys.log "From: " + from + ", Message: " + message
if condition
res.sendfile 'foo.xml'
else
res.sendfile 'bar.xml'

关于javascript - Node.js:从不同文件发送 XML 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7307095/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com