gpt4 book ai didi

javascript - React Autosuggest 访问输入值

转载 作者:行者123 更新时间:2023-11-29 18:50:08 25 4
gpt4 key购买 nike

几天前我开始学习 JavaScript 和 React,现在我正在尝试使用 Material 设计构建一个简单的表格,我可以在其中通过简单的表单弹出窗口添加表格行,并通过行中的图标删除行。

我想对我的“添加数据”区域中的一个字段使用 react-autosuggest,它已经按照自动建议逻辑的方式工作。我的问题是我不知道如何获取在该字段中输入的值,因此我的提交函数可以从输入值构建一个 JSON 并将其传递给一个 Symfony Controller ,该 Controller 构建一个 Doctrine 查询以将其存储在数据库中。

我有两个文件:

在 app.js 中是我的整个桌面、按钮、对话框等:

render() {
const { thema, themengebiet, bemerkungen, ansprechpartner } = this.state;

return (

<MuiThemeProvider>
<div>
<AppBar position="static" color="primary">
...
</AppBar>

<Paper style={{marginTop: '10px'}}>
<Table>
<TableHead style={{ backgroundColor: 'lightgrey'}}>
<TableRow>

...
</TableRow>
</TableHead>

<TableBody>
...
</TableBody>
</Table>
</Paper>
<div style={{ marginTop: '10px', float: 'right'}}>
<Button variant="contained" color="primary" onClick={this.handleClickOpen}>Neuen Eintrag anlegen</Button>
<form id="formular" onSubmit={this.handleSubmit}>
// Here comes my Pop Up Dialog, with the autosuggest field:
<Dialog
open={this.state.open}
onClose={this.handleClose}
aria-labelledby="form-dialog-title"
>
<DialogTitle id="form-dialog-title">Neues Thema vorschlagen</DialogTitle>
<DialogContent>
<DialogContentText>
Bitte alle Felder ausfüllen:
</DialogContentText>

<TextField
autoFocus
margin="dense"
label="Thema"
style={{ marginRight: '10px'}}
name="thema"
value={thema}
onChange={this.onChange}

/>
<Autosuggest
// My hope was I could just define the value of the field like a TextField:
value={ansprechpartner}
// Which does not work
/>
<TextField
...
/>

我看到您应该将 InputProps 传递给自动建议的 TextField,但似乎我不能像这样传递值的变量:

在我的另一个文件 autosuggest.js 中,我返回:

return (

<Autosuggest
theme={{
container: classes.container,
suggestionsContainerOpen: classes.suggestionsContainerOpen,
suggestionsList: classes.suggestionsList,
suggestion: classes.suggestion,
}}
renderInputComponent={renderInput}
suggestions={this.state.suggestions}
onSuggestionsFetchRequested={this.handleSuggestionsFetchRequested}
onSuggestionsClearRequested={this.handleSuggestionsClearRequested}
renderSuggestionsContainer={renderSuggestionsContainer}
getSuggestionValue={getSuggestionValue}
renderSuggestion={renderSuggestion}
inputProps={{
classes,
placeholder: 'Search a country (start with a)',
value: {myValueHere},
onChange: this.handleChange,
'test-id': 'someid',

}}
/>

);

我想从 app.js 中的组件 autosuggest.js 访问 Autosuggest 字段的输入值,我希望将它传递给 app.js 中的状态,以便我的提交函数可以看到并存储它。

有没有一种简单的方法可以从 autosuggest.js 实例的“InputProps”中获取“值”并在我的 app.js 文件中使用它?

如果您需要其他代码或信息,请告诉我。

我这里有更完整的代码版本:https://codesandbox.io/s/8l6nz7p3ll (有些部分可能与我上面发布的片段不同,这个版本当然不能工作,因为数据库层/symfony Controller 丢失了)

我觉得我在这里遗漏了一些基本的 react/js 概念,请随时告诉我,请记住我对此完全陌生。

最佳答案

所以我认为我的问题有一个简单的答案,但我只是不理解 React 的一些关键概念。

我已经阅读了状态和 Prop ,并决定我需要将数据从我的 child 传递给我的 parent 。

为此,我在我的主文件 (App.js) 中定义了一个回调函数:

getAutosuggestInput(value){
// Test logging:
console.log(value);
this.setState({myfieldname: value})
}

然后我将函数传递给 autosuggest.js 中的组件:

<Autosuggest
getInputData={this.getAutosuggestInput}
/>

在我的自动建议组件中,我调用了处理更改的事件处理程序内部的函数。您必须在此处使用 this.props.functionName,其中 functionName 是父级中的函数:

handleChange(event, { newValue }) {
this.setState({
value: newValue,
});
this.props.getInputData(newValue);
console.log("New input value:", newValue);
};

就像我在父级中有一个函数将文本字段值设置为用户刚刚输入的值,该值本身来自子组件 handleChange 处理程序,该处理程序将值传递给我 parent 。当你知道自己在做什么时看起来很容易,但让我告诉你这对我来说很难:)

关于javascript - React Autosuggest 访问输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51520595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com