Ref(2)
-
<ref> 객체 데이터를 접근하는 방법
크롤링 후 html elements 값을 가져오려고 하는중 ref 객체 안에 "동아제약" 데이터를 가져오려고 한다 Text { prev: null, next: null, startIndex: null, endIndex: null, data: '동아제약', type: 'text' } Text.data 로 객체에 접근하면 undifined가 발생한다. 방법 객체를 선언하고 ref 값을 넣어서 선언한 객체에 접근해야한다. const refObject = { 객체를 넣어준다.} const text = refObject.data; console.log(text); // 동아제약
2023.06.14 -
React Ref 사용 방법
js에서 특정 DOM을 선택하는 getElementById 기능에 해당하는 Ref이다 1. Ref import import React, { useState,useRef } from 'react'; import로 useRef를 가져온다. 2. Ref 만들기 const select = useRef() 3. Ref사용 current를 사용하여 ref 해당하는 dom에 접근한다. //dom에 focus select.current.focus(); // select라는 ref를 선택 select.current
2021.11.20