Voicexml语法
我尝试在 voicexml 文件中使用语法。 起初我尝试了内联语法。我使用了网站上的示例,但它不起作用。
这是代码:
<?xml version="1.0" encoding="UTF-8"?>
<vxml [...] version="2.0">
<form id="test">
<field name="var">
<prompt>choose</prompt>
<!-- ABNF -->
<grammar> one | two | three| four </grammar>
<filled>
you chose <value expr="var"/>
</filled>
</field>
</form>
</vxml>
谢谢
I try to use grammar in my voicexml file.
At first i tried an In-line grammar. I used an example from a website, but it doesn't work.
here is the code:
<?xml version="1.0" encoding="UTF-8"?>
<vxml [...] version="2.0">
<form id="test">
<field name="var">
<prompt>choose</prompt>
<!-- ABNF -->
<grammar> one | two | three| four </grammar>
<filled>
you chose <value expr="var"/>
</filled>
</field>
</form>
</vxml>
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 VXML 语法格式可能与您的平台不兼容。试试这个:
而不是...
Your VXML grammar format may not be compatible with your platform. Try this instead:
instead of...