<field>标签内的<filled>标签之间有什么区别?

时间:2017-01-13 08:33:40

标签: ivr vxml voxeo

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

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

示例可在以下网址找到:http://help.voxeo.com/go/help/xml.vxml.tutorials.audio

1 个答案:

答案 0 :(得分: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>