• Jobs
  • About Us
  • Jobs
    • Home
    • Jobs
    • Courses and challenges
  • Businesses
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

193
Views
Cómo insertar datos en QuillJS utilizando un componente basado en funciones

Quiero insertar datos de la base de datos en QuillJS, pero no puedo hacer que funcione, he intentado muchas cosas pero no funciona. Probé setContent pero no funciona, pero también quiero escuchar los cambios en quillJS y obtener los datos que son Init para poder publicar en la base de datos.

Este es el codigo:

 import * as style from '../../constants/styles/Notes.module.scss'; import React from 'react'; import { useQuill } from 'react-quilljs'; import '../../constants/styles/Quill.scss'; import { useEffect, useState } from 'react'; export default function View({ note }) { const [isSaving, setIsSaving] = useState(false); const { quillRef } = useQuill({ modules: { toolbar: [ ['bold', 'italic', 'underline', 'strike'], [{ align: [] }], [{ list: 'ordered' }, { list: 'bullet' }], [{ indent: '-1' }, { indent: '+1' }], [{ size: ['small', false, 'large', 'huge'] }], [{ header: [1, 2, 3, 4, 5, 6, false] }], ['link', 'image', 'video'], [{ color: [] }, { background: [] }], ['clean'], ], }, formats: [ 'bold', 'italic', 'underline', 'strike', 'align', 'list', 'indent', 'size', 'header', 'link', 'image', 'video', 'color', 'background', 'clean', ], }); return ( <section className={style.view}> <div style={{ width: '100%', height: '100%', border: '0 !important' }}> {isSaving === true ? ( <div className={style.saving}>Saving the new changes.</div> ) : null} <div ref={quillRef} /> <div id='toolbar'> <button className='ql-bold' /> <button className='ql-script' value='sub' /> <button className='ql-script' value='super' /> </div> <div id='editor' /> </div> </section> ); }
over 3 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Show me some job opportunities
There's an error!