Languages
[Edit]
DE

React - Auswahlliste

3 points
Created by:
Nikki
10520

In diesem Artikel wird gezeigt, wie man eine Auswahlliste in React hinzufĂŒgen kann.

Im folgenden Beispiel erstellt man mit hilfe des React.useRef-Hooks eine colorRef-Referenz auf eine Auswahlliste, aus der unsere Lieblingsfarbe ausgewÀhlt werden. In diesem Fall sind die Auswahlmöglichkeiten rot, gelb oder blau.

Das data-Objekt wird mit einer DOM-Referenz erstellt, die sich innerhalb der Funktion handleSubmit befindet und auf eine Auswahlliste verweist, die die Eigenschaft colorRef.current.value hat.

Schließlich zeigt die Funktion handleSubmit in der Konsole das in JSON konvertiertes data-Objekt an.

// ONLINE-RUNNER:browser;

//import React from 'react';

const Form = () => {
  const colorRef = React.useRef();
  const handleSubmit = e => {
    e.preventDefault();
    const data = {
      color: colorRef.current.value
    };
    const json = JSON.stringify(data);
    console.clear();
    console.log(json);
  };
  return (
    <form onSubmit={handleSubmit}>
      <div>
        <label>
          WĂ€hlen Sie Ihre Lieblingsfarbe:
          <select ref={colorRef}>
            <option value='red'>Rot</option>
            <option value='yellow'>Gelb</option>
            <option value='blue'>Blau</option>
          </select>
        </label>
      </div>
      <button type='submit'>BestÀtigen</button>
    </form>
  );
};

const root = document.querySelector('#root');
ReactDOM.render(<Form />, root );

Alternative titles

  1. React - Dropdown-Liste
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS (DE)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

â€ïžđŸ’» 🙂

Join