Voicexml语法

发布于 2024-10-11 02:42:42 字数 470 浏览 2 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-10-18 02:42:42

您的 VXML 语法格式可能与您的平台不兼容。试试这个:

<grammar root="main" version="1.0" xml:lang="en">

  <rule id="main" scope="public">
    <one-of>
      <item>one</item>
      <item>two</item>
      <item>three</item>
      <item>four</item>
    </one-of>
  </rule>

</grammar>

而不是...

<grammar> one | two | three| four </grammar>

Your VXML grammar format may not be compatible with your platform. Try this instead:

<grammar root="main" version="1.0" xml:lang="en">

  <rule id="main" scope="public">
    <one-of>
      <item>one</item>
      <item>two</item>
      <item>three</item>
      <item>four</item>
    </one-of>
  </rule>

</grammar>

instead of...

<grammar> one | two | three| four </grammar>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文