我在网页中集成“ tui-editor-1.0.3 ”时遇到了困难。
它抛出一个错误:错误"Uncaught TypeError: Cannot read property 'scrollIntoView' of undefined"
的来源是行号19122
,tui-Editor-editor.js
其中存在 null
值this._currentButton
,它试图访问this._currentButton.scrollIntoView()
。
null
我试图在访问之前检查值this._currentButton.scrollIntoView
,但它没有生成适当的编辑器视图。
如何确保它this._currentButton
始终不能为空?或者,任何其他解决方案?