我是voiceXML的新手,我想知道如何在发布后读取服务器返回的值。我希望voiceXML读取服务器的响应。 According to voiceXML documentation,我知道结果应为XML。

这是我的接收结果的node.js/express.js代码:

app.post("/getData", function (req, res) {
    console.log(JSON.stringify(req.body));
    res.header('Content-Type','text/xml').send('<?xml version="1.0" ?> <vxml version="2.0"> <block> <prompt> The time in Milwaukee is 10 </prompt> </block> </vxml>');
});

这是显示我已成功收到发布内容的屏幕截图:

javascript - 使voiceXML读取服务器返回的结果-LMLPHP

这是显示我成功发送XML结果的屏幕截图:
javascript - 使voiceXML读取服务器返回的结果-LMLPHP

这是我的voiceXML文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE vxml PUBLIC "-//BeVocal Inc//VoiceXML 2.0//EN" "http://cafe.bevocal.com/libraries/dtd/vxml2-0-bevocal.dtd">
<vxml xmlns="http://www.w3.org/2001/vxml" xmlns:bevocal="http://www.bevocal.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0">
    <form scope="dialog">
        <field name="name" modal="false">
            <grammar src="grammars.grammar#Names"/>
            <prompt>Whats your name?</prompt>
            <filled>
                <prompt>Hello <value expr="name"/>
                </prompt>
            </filled>
        </field>

        <field name="city" modal="false">
            <grammar src="grammars.grammar#Cities"/>
            <prompt>What city are you from?</prompt>
            <filled>
                <prompt>You are from <value expr="city"/>
                </prompt>
            </filled>
        </field>

        <field name="country" modal="false">
            <grammar src="grammars.grammar#Countries"/>
            <prompt>What country are you from?</prompt>
            <filled>
                <prompt>You are from <value expr="country"/>
                </prompt>
            </filled>
        </field>

        <field name="cityTime">
            <prompt>
                What city would you like the time for?
            </prompt>
            <grammar type="application/x-nuance-gsl">
                [denver (san francisco) ]
            </grammar>
        </field>
        <field name="formatTime">
            <prompt>
                Twelve hour or twenty four hour clock?
            </prompt>
            <grammar type="application/x-nuance-gsl">
                [[twelve (twenty four)] ?hour]
            </grammar>
        </field>
        <block>
            <submit next="http://65.29.170.122/getData" method="post" namelist="name city country cityTime formatTime" />
        </block>
    </form>
</vxml>

最佳答案

有两种方法可用:
首先,收集您的输入后,提交表单,响应应该是播放您的数据的新VoiceXML文档。

其次,如果您的浏览器支持(大多数情况下支持),则可以使用Data元素从VoiceXML表单内发出请求。响应必须是XML。 VoiceXML提供了一种遍历结果DOM来获取数据的方法。

至于说数据,大多数浏览器在提示中都支持SSML的say-as元素。对于大多数专业应用程序,通常的方法是构建一个javascript库,以汇编和播放一组录音以播放时间。

10-05 18:41