Query Auto-Completion in c# bot in bot framework

前端 未结 2 1791
慢半拍i
慢半拍i 2020-12-12 04:31

I want to implement autocomplete in my c# bot which i developed using microsoft bot framework and added into my portal as iframe. is it possible to implement query suggestio

2条回答
  •  无人及你
    2020-12-12 05:03

    can i use jquery auto-completion here ?

    Based on my test, we can attach jQuery Autocomplete widgets to webchat input box. The following sample code is for your reference.

    
    
    
        
        
        
        
        
        
        
        
        
    
    
        

    Test result:

    Note: I enter a, it show a list items for my selecting, and then I select an item, such as ActionScript, if I directly click send button, it will only send a to bot. To avoid it, we can manually enter a white-space (or other characters) and remove them before click send button.

提交回复
热议问题