入力タグにAutocomplete
コンポーネントを使用したい。タグを取得して状態に保存しようとしています。後でデータベースに保存できます。反応ではクラスの代わりに関数を使用しています。私はonChange
を試してみましたが、何の結果も得られませんでした。
<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 />)} />
Yukiがすでに述べたように、onChange
関数を適切に使用したことを確認してください。 2つのパラメーターを受け取ります。ドキュメントによると:
署名:
function(event: object, value: any) => void
。
event
:コールバックのイベントソース
value
:null(Autocompleteコンポーネント内の値)。
次に例を示します。
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 },
];
onChange
を正しく使用してよろしいですか?
onChange
signature:function(event: object, value: any) => void
@Dworo
入力フィールドのドロップダウンから選択したアイテムを表示することに問題がある人のために。
回避策を見つけました。基本的に、inputValue
でonChage
をAutocomplete
とTextField
の両方にバインドする必要があります。
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 />
)}
/>
<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
/>
)}
/>
上記のコードを使用しても、オートコンプリートボックスで選択したオプションを表示できません。
バックエンドからタグを取得するには、入力が変更されるたびにAPIをヒットする必要がありました。
入力の変更ごとに推奨タグを取得したい場合は、Material-ui onInputChangeを使用してください。
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
/>
オートコンプリートからオプションを選択したときに状態を更新したかったのですが。すべての入力を管理するグローバルonChangeハンドラーがありました
const {name, value } = event.target;
setTukio({
...tukio,
[name]: value,
});
これにより、フィールドの名前に基づいてオブジェクトが動的に更新されます。しかし、オートコンプリートでは、名前は空白を返します。そこで、ハンドラーをonChange
からonSelect
に変更しました。次に、変更を処理する別の関数を作成するか、私の場合のように、名前が渡されていないかどうかを確認するifステートメントを追加しました。
// This one will set state for my onSelect handler of the autocomplete
if (!name) {
setTukio({
...tukio,
tags: value,
});
} else {
setTukio({
...tukio,
[name]: value,
});
}
上記のアプローチは、単一のオートコンプリートがある場合に機能します。複数のuがある場合、以下のようなカスタム関数を渡すことができます
<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:
}
};