1

<filled>标签可以写在标签下,<field>也可以写在标签之外,在a<form>标签下。

那么这两种编写代码的方式有什么区别呢?在哪种情况下这将是有益的?

示例见:http ://help.voxeo.com/go/help/xml.vxml.tutorials.audio

4

1 回答 1

2

如果你在里面写标签,那么它将是对该标签的特殊处理。

如果你在外面写,那么它可以用于像在 .

例如。

<?xml version="1.0" encoding="UTF-8"?> 
<vxml version="2.1" xmlns="http://www.w3.org/2001/vxml">
 <form id="get_starting_and_ending_cities">
  <field name="start_city">
      <grammar src="city.grxml" 
        type="application/srgs+xml"/>
      <prompt>What is the starting city?</prompt>
  </field>
  <field name="end_city">
      <grammar src="city.grxml" 
        type="application/srgs+xml"/>
      <prompt>What is the ending city?</prompt>
  </field>
  <filled mode="all" namelist="start_city end_city">
    <log><value expr="start_city"/></log>
<log><value expr="end_city"/></log>

    <if cond="start_city == end_city">
      <prompt>
        You can't fly from and to the same city.
      </prompt>
   </if>
  </filled>
</form>
</vxml>
于 2017-01-13T09:33:58.077 回答