增加 VXML 中的计数器
很抱歉,这可能是一个非常基本的问题,但我才刚刚开始编程。基本上我需要增加 VXML 中的计数器。
我已将计数器声明为:
<var name="i" expr="0" />
在 IF 语句中,我通过执行以下操作来递增:第二个分配标记递增计数器。
<if cond="the_aveland_high_school"> <prompt> Thank you I have recognised a school</prompt> <assign name="arrEmpty[i]" expr="'the_aveland_high_school'"/> <assign name="i" expr="++"/> </if>
这个概念正确吗?
感谢您的帮助!
I'm sorry that this is probably a really basic question but I'm just beginning to program. Basically I need to increment a counter in VXML.
I've declared the counter as:
<var name="i" expr="0" />
and in an IF statement I've incremented by doing this: the second assign tag increments the counter.
<if cond="the_aveland_high_school"> <prompt> Thank you I have recognised a school</prompt> <assign name="arrEmpty[i]" expr="'the_aveland_high_school'"/> <assign name="i" expr="++"/> </if>
Is that concept correct?
Thanks for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你的问题留下了信息。我相信您问过:
是的,这是增加计数器的一种方法。您还可以直接在元素内的 ECMAScript 中执行逻辑。
I think information was left from your question. I believe you asked if:
Yes, that is one way to increment a counter. You can also perform your logic directly in ECMAScript within a element.