質問

私はこの問題の音声ブラウザの繰り返し自分としての価値の数より大きなマルチ桁の番号です。例えば、自分にとっては未知の分野の収集を入力タイプ'桁の数字や数字'-この場合で転送します。の充填部の収集した値を繰り返します。代わりに聴番2345語として2-3-4-5'は音声として二千三百fourty五'.

方法を教えてください値を繰り返し順次?私の指定を行う-として"タグが無い.以下のコードしようとするとこと:

<field name="extension" type="digits?length=4">
  <prompt bargein="false">
    Please dial in or say the extension of the <value expr="application.extensionValues" /> you are trying to reach.
  </prompt>
  <grammar type="application/x-nuance-gsl">
    [ dtmf-1 dtmf-2 dtmf-3 dtmf-4 dtmf-5 dtmf-6 dtmf-7 dtmf-8 dtmf-9 dtmf-0 ]
  </grammar>    
  <grammar type="application/x-nuance-gsl">
    [ one two three four five six seven eight nine ]
  </grammar>    
</field>

<filled>
  <prompt>
    I received extension number <say-as interpret-as="vxml:number"><value expr="extension"/></say-as>.  Transfering you now.
  </prompt> 
</filled>

編集1

ありの台を使用している"BeVocalカフェ"開発と環境.私を指すこのIVRにURIしたいことが分かったのvxmlスクリプト格納されています。

残念ながらご提案になりました。しようとするとの解釈として価値を"電話"の通訳をしなかったかerroredます。しようとすると利用"に登場するキャラクター"に見られるようにしたかったのがエラーがなんと、通訳のログに記載の解釈として価値がunknown

役に立ちましたか?

解決

のないタグとしては、かかるものと思われます。に変更してみてください解釈として、属性電話:http://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526/#S3.3

他のヒント

こちらのコードが適切なBeVocalマークアップ等を行っています。ご注意実施のタグがベンダー依存性であり、このよう ない ました。

<field name="extension" type="digits?length=4">
  <prompt bargein="false">
    Please dial in or say the extension of the <value expr="application.extensionValues" /> you are trying to reach.
  </prompt>
  <grammar type="application/x-nuance-gsl">
    [ dtmf-1 dtmf-2 dtmf-3 dtmf-4 dtmf-5 dtmf-6 dtmf-7 dtmf-8 dtmf-9 dtmf-0 ]
  </grammar>    
  <grammar type="application/x-nuance-gsl">
    [ one two three four five six seven eight nine ]
  </grammar>    
</field>

<filled>
  <prompt>
    I received extension number <say-as type="number:digits"><value expr="extension"/></say-as>.  Transfering you now.
  </prompt> 
</filled>

また同様の課題です。がんの周りでの設定によって型式の頭文字.このIVR字の桁数を一定にしたものです。なお、このたPlumVoice IVR.あなたにとってどんな年でした作品です。ここは改善します。

<field name="extension" type="digits?length=4">
  <prompt bargein="false">
    Please dial in or say the extension of the <value expr="application.extensionValues" /> you are trying to reach.
  </prompt>
  <grammar type="application/x-nuance-gsl">
    [ dtmf-1 dtmf-2 dtmf-3 dtmf-4 dtmf-5 dtmf-6 dtmf-7 dtmf-8 dtmf-9 dtmf-0 ]
  </grammar>    
  <grammar type="application/x-nuance-gsl">
    [ one two three four five six seven eight nine ]
  </grammar>    
</field>

<filled>
  <prompt>
    I received extension number <say-as type="acronym"><value expr="extension"/></say-as>.  Transfering you now.
  </prompt> 
</filled>

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top