我在告诉工作室有开发者帐户,
我尝试了一些基本的片段,它工作正常,最后我尝试了记录标签,
但它不起作用,即使 NOINPUT TAG 也不起作用,
这是我的片段,
<vxml version="2.0" xmlns="http://www.w3.org/2001/vxml">
<form id="form-record">
<record name="greeting" beep="true" maxtime="10s" finalsilence="2000ms">
<prompt>
Please record your greeting after the tone.---------------This line executing
</prompt>
<noinput>
i did not hear anything. <reprompt/> ------this line not working,
</noinput>
</record>
<field name="confirm" type="boolean">
<prompt>
your greeting is <audio expr="greeting"/>
to keep it say yes, to discard it say no.
</prompt>
<filled>
<if cond="confirm">
<prompt> ok, i will save your greeting </prompt>
<submit method="post" namelist="greeting"
next="greetingstore.jsp"/>
<else/>
<prompt> ok, lets try again </prompt>
<clear namelist="greeting confirm"/>
</if>
</filled>
</field>
</form>
</vxml>