Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有“正确的方法”来检测我是否失去了 Draft.js 编辑器的焦点?
用例是,如果用户单击其他地方,我想要“退出编辑器模式”,这意味着我切换编辑器的 readOnly 属性。我怎样才能理想地做到这一点,这样做是一个好主意(你看到问题了吗)?
你可以捕捉到在你的草稿编辑器周围触发的模糊事件onBlur
onBlur
<Editor onBlur={this.onBlur}
这对您的场景来说还不够吗?