Webエディタ/リアクション-hook-formの使用
7272 ワード
糸添加反応器-管柱取付
ネット編集は鏡に映りますね......!
react-hook-formrに接続して使用する方法があります
import ReactQuill from 'react-quill';
import 'react-quill/dist/quill.snow.css';
// import ReactQuill from "react-quill"; <- 애가 dynamic import임
import "react-quill/dist/quill.snow.css";
//react를 next에서 쓰기위해
import dynamic from "next/dynamic";
const ReactQuill = dynamic(() => import("react-quill"), { ssr: false });
export default function WebEditorPage() {
function handleChange(value: string) {
console.log(value);
}
// if (process.browser) {
// console.log("나는 브라우저다!!");
// } else {
// console.log("나는 프론트엔드 서버다!");
// }
return (
<>
작성자:
<input type="text" />
<br />
비밀번호:
<input type="password" />
<br />
제목:
<input type="text" />
<br />
내용:
<ReactQuill onChange={handleChange} />
<br />
<button>등록하기</button>
</>
);
}
ネット編集は鏡に映りますね......!
react-hook-formrに接続して使用する方法があります
import { useForm } from "react-hook-form";
// import ReactQuill from "react-quill"; <- 애가 dynamic import임
import "react-quill/dist/quill.snow.css";
//react를 next에서 쓰기위해
import dynamic from "next/dynamic";
const ReactQuill = dynamic(() => import("react-quill"), { ssr: false });
export default function WebEditorPage() {
const { handleSubmit, register, setValue, trigger } = useForm({
mode: "onChange",
});
function handleChange(value: string) {
console.log(value);
//register로 등록하지 않고, 강제로 값을 넣어주는 기능 !!
setValue("contents", value === "<p><br></p>" ? "" : value);
//onChange 됐는지 안됐는지 react-hook-form에 알려주는 기능 !!
trigger("contents");
}
return (
<>
작성자:
<input type="text" {...register("writer")} />
<br />
비밀번호:
<input type="password" {...register("password")} />
<br />
제목:
<input type="text" {...register("title")} />
<br />
내용:
<ReactQuill onChange={handleChange} />
<br />
<button>등록하기</button>
</>
);
}
Reference
この問題について(Webエディタ/リアクション-hook-formの使用), 我々は、より多くの情報をここで見つけました https://velog.io/@cksal4897/웹에디터-사용하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol