Node.js 添加到字典-防止在Microsoft';s的bot框架

Node.js 添加到字典-防止在Microsoft';s的bot框架,node.js,botframework,Node.js,Botframework,有没有办法防止自动更正?事实证明,自动完成/自动更正/拼写检查/等是浏览器功能,完全独立于webchat 这对我很有用: <script> var textbox = document.querySelector('.wc-textbox') textbox.setAttribute('autocomplete', 'off') textbox.setAttribute('autocorrect', 'off') textbox.setAttribute('auto

有没有办法防止自动更正?

事实证明,自动完成/自动更正/拼写检查/等是浏览器功能,完全独立于webchat

这对我很有用:

<script>
  var textbox = document.querySelector('.wc-textbox')

  textbox.setAttribute('autocomplete', 'off')
  textbox.setAttribute('autocorrect', 'off')
  textbox.setAttribute('autocapitalize', 'off')
  textbox.setAttribute('spellcheck', 'false') 
</script>

var textbox=document.querySelector('.wc textbox')
setAttribute('autocomplete','off')
textbox.setAttribute('autocorrect','off')
textbox.setAttribute('autocapitalize','off')
textbox.setAttribute('拼写检查','假')