作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现一个按钮,该按钮在单击后将内联样式更改为粗体。我想实现这个 example但是使用 React Hooks。
单击按钮后,RichUtils 正在执行,但不会将文本更改为粗体。我缺少什么?
import React, { useEffect, useRef, useState } from 'react';
import {Editor, EditorState, RichUtils} from 'draft-js';
const MyEditor = () => {
const [editorState, setEditorState] = useState(EditorState.createEmpty());
const editor = useRef(null);
const focusEditor = () => {
editor.current.focus();
}
const boldText = () => {
let nextState = RichUtils.toggleInlineStyle(editorState, 'BOLD');
setEditorState(nextState);
}
return (
<div onClick = {focusEditor}>
<button onClick = { () => boldText()}>Bold</button>
<Editor
ref = {editor}
editorState = {editorState}
onChange = {editorState => setEditorState(editorState)}
/>
</div>
);
}
export default MyEditor;
最佳答案
我不太清楚为什么,但你的焦点功能似乎打断了粗体切换。删除它允许切换功能与您链接到的示例相同。
const MyEditorFunctional = () => {
const [editorState, setEditorState] = useState(EditorState.createEmpty());
const boldText = () => {
const nextState = RichUtils.toggleInlineStyle(editorState, "BOLD");
setEditorState(nextState);
};
return (
<div>
<button type="button" onClick={boldText}>
Bold
</button>
<Editor
editorState={editorState}
onChange={setEditorState}
/>
</div>
);
};
关于reactjs - 如何在 React Hooks 中使用 RichUtils,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60405921/
我是一名优秀的程序员,十分优秀!