render()

차노·2023년 8월 4일
0

JS

목록 보기
29/96

React's goal is in many ways to render HTML in a web page.

React renders HTML to the web page by using a function called createRoot() and method render().

사전적 의미
provide or give (a service, help, etc.)

던지다, 주다, 건네다

"money serves as a reward for services rendered"

  • submit or present for inspection or consideration.
    "he would render income tax returns at the end of the year"
  • deliver
    "the jury's finding amounted to the clearest verdict yet redered upon the scandal"
  • LITERARY
    hand over.
    "he will render up his immortal soul"

cause to be or become; make

가능하게 하다

"the rains rendered his escape impossible"

represent or depict artistically.
"the eyes and the cheeks are exceptionally well rendered"

  • perform (a piece).
    "a sorano solo reverently rendered by Linda Howie"
  • translate
    "the phrase was rendered into English"
  • COMPUTING
    process (an outline image) using color and shading in order to make it appear solid nad three-dimentional.
    "he is forced to render images by intermixing pixels of a few basic colors"
  1. covertly send (a foreign criminal or terroist suspect) for interrogation sbroad; subject to extraordinary rendition.
  2. melt down (fat).
    "the fat was being cut up and rendered for lard"
  • process (the carcass of an animal) in order to extract proteins, fats, and other usable parts.
    "animal carcasses were rendered to provide a protein supplement"
  1. cover (stone or brick) with a coat of plaster.
    "external walls will be rendered and tiled"

Late middle english, it was from Old French rendre, from an alteration of Latin reddere 'give back', from re-back + dare give. The earliest senses were 'recite', 'translate' and 'give back'(hence 'represent' and 'perform'); 'hand over (hence 'give help' and 'submit for consideration') 'cause to be' and 'melt down'

The render() method is then called to define the React component that should be rendered.

Reference

purpose

The purpose of the function is to display the specified HTML code insde the specified HTML element.

이 함수의 목적은 특정 HTML 요소 내에서 특정 HTML 코드를 보여주기 위함이다.

Reference

In React, Render is the technique that can redirect a page with the help of function rendeer().

리액트에서, 렌더는 함수 render()의 도움으로 페이지를 리디렉트할 수 이쓴 기술이다.

What is Virtual DOM?

VDOM determines, as a Virtual "Document object Model library", that it Displays instances in the UI with the help of defined certain logic. We can also consider it as a library as ReactDOM.

VDOM은 정의된 특정 로직으로 UI 내에서 인스턴스를 보여주는 가상의 다큐먼트 객체 모델 라이브러리로서 결정한다. 리액트돔으로서 라이브러리를 고려한다고 볼 수 있다.

Purpose of Render

The goal of this function is to represent the imposed HTML code within the specified HTML element tags. It helps to redirect the HTML page with the help of the render() function.

이 함수의 목적은 특정 HTML 요소 태그 내에서 임포즈된 HTML 코드를 나타내기 위함이다. 랜더 함수의 도움으로 HTML 페이지를 다시 가리키게끔 한다.

Reference

0개의 댓글