Manipular alterações no componente de preenchimento automático da interface do usuário do material


12

Eu quero usar o Autocompletecomponente para tags de entrada. Estou tentando obter as tags e salvá-las em um estado para poder salvá-las posteriormente no banco de dados. Eu estou usando funções em vez de classes em reagir. Eu tentei onChange, mas não obtive nenhum resultado.

<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 />)} />

Respostas:


26

Como Yuki já mencionou, certifique-se de usar a onChangefunção corretamente. Ele recebe dois parâmetros. De acordo com a documentação:

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

event: A fonte de eventos do retorno de chamada

value: null (o valor / valores no componente Preenchimento automático).

Aqui está um exemplo:

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 },
];

Muito obrigado eu estava usando o onchange no componente TextField
Buk Lau

4

Tem certeza de que usou onChangecorretamente?

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


Muito obrigado eu estava usando o onchange no componente TextField
Buk Lau

3

@Dworo

Para qualquer pessoa que tenha um problema com a exibição de um item selecionado na lista suspensa no campo Entrada.

Encontrei uma solução alternativa. Basicamente, você precisa vincular um inputValueat onChagepara ambos Autocompletee TextField, merda UI de material.

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 />
  )}
/>

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
                  />
                )}
                />

Ao usar o código acima, ainda não consigo obter a caixa de preenchimento automático para exibir a opção selecionada. Alguma idéia pessoal?


onTagsChange = (evento, valores) => {const {handleChange} = this.props; handleChange ('searchKeyword', values)}
Dworo

Eu tenho exatamente o mesmo problema, copiei o código dos documentos e ele não está funcionando. Inacreditável!
Deda

0

Eu precisava acertar minha API em todas as alterações de entrada para obter minhas tags de back-end!

Use Material-ui onInputChange se você deseja obter as tags sugeridas em cada alteração de entrada!

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
              />

0

Eu queria atualizar meu estado ao selecionar uma opção no preenchimento automático. Eu tinha um manipulador onChange global que gerencia todas as entradas

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

Isso atualiza o objeto dinamicamente com base no nome do campo. Mas, no preenchimento automático, o nome retorna em branco. Então, mudei o manipulador de onChangepara onSelect. Em seguida, crie uma função separada para lidar com a alteração ou, como no meu caso, adicione uma instrução if para verificar se o nome não foi passado.

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

A abordagem acima funciona se você tiver um único preenchimento automático. Se você tem múltiplos u pode passar uma função personalizada como abaixo

<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:
    }
  };
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.