Zmień obsługę Autouzupełniania komponentu z interfejsu użytkownika materiału

12

Chcę użyć Autocompletekomponentu do tagów wejściowych. Próbuję pobrać tagi i zapisać je w stanie, aby później móc je zapisać w bazie danych. W reakcji używam funkcji zamiast klas. Próbowałem onChange, ale nie uzyskałem żadnego rezultatu.

<div style={{ width: 500 }}>
    <Autocomplete
        multiple
        options={autoComplete}
        filterSelectedOptions
        getOptionLabel={option => option.tags}
        renderInput={params => (<TextField
                className={classes.input}
                {...params}
                variant="outlined"
                placeholder="Favorites"
                margin="normal"
                fullWidth />)} />
Buk Lau
źródło

Odpowiedzi:

26

Jak już wspomniano Yuki, upewnij się, że onChangewłaściwie użyłeś tej funkcji. Otrzymuje dwa parametry. Zgodnie z dokumentacją:

Podpis : function(event: object, value: any) => void.

event: Źródło zdarzenia wywołania zwrotnego

value: null (Wartość / wartości w komponencie autouzupełniania).

Oto przykład:

import React from 'react';
import Chip from '@material-ui/core/Chip';
import Autocomplete from '@material-ui/lab/Autocomplete';
import TextField from '@material-ui/core/TextField';

export default class Tags extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      tags: []
    };
    this.onTagsChange = this.onTagsChange.bind(this);
  }

  onTagsChange = (event, values) => {
    this.setState({
      tags: values
    }, () => {
      // This will output an array of objects
      // given by Autocompelte options property.
      console.log(this.state.tags);
    });
  }

  render() {
    return (
      <div style={{ width: 500 }}>
        <Autocomplete
          multiple
          options={top100Films}
          getOptionLabel={option => option.title}
          defaultValue={[top100Films[13]]}
          onChange={this.onTagsChange}
          renderInput={params => (
            <TextField
              {...params}
              variant="standard"
              label="Multiple values"
              placeholder="Favorites"
              margin="normal"
              fullWidth
            />
          )}
        />
      </div>
    );
  }
}

const top100Films = [
  { title: 'The Shawshank Redemption', year: 1994 },
  { title: 'The Godfather', year: 1972 },
  { title: 'The Godfather: Part II', year: 1974 },
  { title: 'The Dark Knight', year: 2008 },
  { title: '12 Angry Men', year: 1957 },
  { title: "Schindler's List", year: 1993 },
  { title: 'Pulp Fiction', year: 1994 },
  { title: 'The Lord of the Rings: The Return of the King', year: 2003 },
  { title: 'The Good, the Bad and the Ugly', year: 1966 },
  { title: 'Fight Club', year: 1999 },
  { title: 'The Lord of the Rings: The Fellowship of the Ring', year: 2001 },
  { title: 'Star Wars: Episode V - The Empire Strikes Back', year: 1980 },
  { title: 'Forrest Gump', year: 1994 },
  { title: 'Inception', year: 2010 },
];
Germmand
źródło
Dziękuję bardzo, że korzystałem z zamiany na TextField Component
Buk Lau
4

Czy na pewno używałeś onChangepoprawnie?

onChange podpis :function(event: object, value: any) => void

Yuki
źródło
Dziękuję bardzo, że korzystałem z zamiany na TextField Component
Buk Lau
3

@Dworo

Dla każdego, kto ma problem z wyświetlaniem wybranego elementu z menu rozwijanego w polu Input.

Znalazłem obejście. Zasadniczo masz zobowiązywanie inputValuesię onChagedo obu Autocompletei TextField, gównianym Materiały UI.

const [input, setInput] = useState('');

<Autocomplete
  options={suggestions}
  getOptionLabel={(option) => option}
  inputValue={input}
  onChange={(e,v) => setInput(v)}
  style={{ width: 300 }}
  renderInput={(params) => (
    <TextField {...params} label="Combo box" onChange={({ target }) => setInput(target.value)} variant="outlined" fullWidth />
  )}
/>
Deda
źródło
0
  <Autocomplete
                disableClearable='true'
                disableOpenOnFocus="true"
                options={top100Films}
                getOptionLabel={option => option.title}
                onChange={this.onTagsChange}
                renderInput={params => (
                  <TextField
                    {...params}
                    variant="standard"
                    label="Favorites"
                    margin="normal"
                    fullWidth
                  />
                )}
                />

Po użyciu powyższego kodu nadal nie mogę uzyskać pola autouzupełniania, aby wyświetlić wybraną opcję. Jakieś pomysły, chłopaki?

Dworo
źródło
onTagsChange = (zdarzenie, wartości) => {const {handleChange} = this.props; handleChange ('searchKeyword', wartości)}
Dworo
Mam dokładnie ten sam problem, skopiowałem kod z dokumentów i nie działa. Nie do wiary!
Deda,
0

Musiałem naciskać mój interfejs API przy każdej zmianie danych wejściowych, aby pobrać moje tagi z backendu!

Użyj Material-ui onInputChange, jeśli chcesz otrzymywać sugerowane tagi przy każdej zmianie danych wejściowych!

this.state = {
  // labels are temp, will change every time on auto complete
  labels: [],
  // these are the ones which will be send with content
  selectedTags: [],
}
}

//to get the value on every input change
onInputChange(event,value){
console.log(value)
//response from api
.then((res) => {
      this.setState({
        labels: res
      })
    })

}

//to select input tags
onSelectTag(e, value) {
this.setState({
  selectedTags: value
})
}


            <Autocomplete
            multiple
            options={top100Films}
            getOptionLabel={option => option.title}
            onChange={this.onSelectTag} // click on the show tags
            onInputChange={this.onInputChange} //** on every input change hitting my api**
            filterSelectedOptions
            renderInput={(params) => (
              <TextField
                {...params}
                variant="standard"
                label="Multiple values"
                placeholder="Favorites"
                margin="normal"
                fullWidth
              />
oyemujtaba
źródło
0

Chciałem zaktualizować swój stan, gdy wybiorę opcję z autouzupełniania. Miałem globalny moduł obsługi OnChange, który zarządza wszystkimi danymi wejściowymi

         const {name, value } = event.target;
         setTukio({
          ...tukio,
          [name]: value,
        });

To dynamicznie aktualizuje obiekt na podstawie nazwy pola. Ale w autouzupełnianiu nazwa zwraca puste. Więc zmieniłem program obsługi z onChangena onSelect. Następnie utwórz oddzielną funkcję do obsługi zmiany lub, jak w moim przypadku, dodałem instrukcję if, aby sprawdzić, czy nazwa nie została przekazana.

// This one will set state for my onSelect handler of the autocomplete 
     if (!name) {
      setTukio({
        ...tukio,
        tags: value,
      });
     } else {
      setTukio({
        ...tukio,
        [name]: value,
      });
    }

Powyższe podejście działa, jeśli masz pojedyncze autouzupełnianie. Jeśli masz wiele, możesz przekazać niestandardową funkcję, jak poniżej

<Autocomplete
    options={tags}
    getOptionLabel={option => option.tagName}
    id="tags"
    name="tags"
    autoComplete
    includeInputInList
    onSelect={(event) => handleTag(event, 'tags')}
          renderInput={(params) => <TextField {...params} hint="koo, ndama nyonya" label="Tags" margin="normal" />}
        />

// The handler 
const handleTag = ({ target }, fieldName) => {
    const { value } = target;
    switch (fieldName) {
      case 'tags':
        console.log('Value ',  value)
        // Do your stuff here
        break;
      default:
    }
  };
TRANS
źródło