添加到字典 - 在Microsoft的bot框架内防止自动更正

时间:2017-08-23 21:26:10

标签: node.js botframework

有没有办法阻止Microsoft's bot framework's Web Chat内的自动更正?

1 个答案:

答案 0 :(得分:3)

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

这对我有用:

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

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

Disable spell-checking on HTML textfields