- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我基本上是 React 的初学者。我有一个显示 react 表的仪表板页面。我有一个自定义按钮,它将打开一个弹出页面,这个弹出页面有一些复选框允许我显示/隐藏那些 React 列。最初,此弹出页面中的所有复选框都设置为 true。当我取消选中某个列时,该特定列将被禁用。
现在我已经在子组件中编写了一些功能(3个主要功能)。为了应用程序的简单性,我现在想将这 3 个功能移动到父组件。
这是我的子组件
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import { ActionCreators } from '../../../actions';
import './CustomizedView.scss';
// import Filter from '../../common/filter/filter';
import ButtonComponent from '../../common/button/ButtonComponent';
class CustomizedViewInv extends Component {
constructor(props) {
super(props);
this.handleCheckChildElement = this.handleCheckChildElement.bind(this);
// this.applyFilter = this.applyFilter.bind(this);
this.resetFilter = this.resetFilter.bind(this);
this.state = {
items: this.props.items,
};
}
getCheckBox(item) {
return (
<div>
<input
value={item.id}
// className='chkProd'
type='checkbox'
checked={item.isChecked}
//disabled={d.poId !== null || d.status !== 'Responded'}
onClick={(e) => { this.handleCheckChildElement(e); }}
/>
{item.value}
</div>);
}
handleCheckChildElement(event) {
const { items } = this.state;
for (let i = 0; i < items.length; i = i + 1) {
if(items[i].id === +event.target.value) {
items[i].isChecked = !items[i].isChecked;
break;
}
}
this.setState({ items });
}
resetFilter() {
const { items } = this.state;
for (let i = 0; i < items.length; i = i + 1) {
items[i].isChecked = true;
}
this.setState({ items });
console.log('Reset filter : > Items : ' + JSON.stringify(items));
}
render() {
const { items } = this.state;
return (
<div className='dashboardFilter-container' >
<div className='bottomBar'>
<ButtonComponent
text='Apply'
className='activeButton filterMargin-div'
width='100'
display='inline-block'
// onClick={() => { this.props.applyFilter(); }}
/>
<ButtonComponent
text='Reset'
className='greyedButton clear-dashboard-filter'
width='100'
display='block'
marginTop='60'
onClick={() => { this.resetFilter(); }}
/>
</div>
<div>
<div className='data-points-text'>
<span> Columns </span>
</div>
<div className="App">
{items.map((item) => {
return this.getCheckBox(item);
})}
</div>
</div>
</div>
);
}
}
CustomizedViewInv.propTypes = {
items: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
};
CustomizedViewInv.defaultProps = {
};
function mapStateToProps(state) {
return {
auth: state.auth
};
}
function mapDispatchToProps(dispatch) {
return bindActionCreators(ActionCreators, dispatch);
}
export default connect(mapStateToProps, mapDispatchToProps)(CustomizedViewInv);
在我的父组件中,我导入了子组件。你可以在 Child Component 中看到一个名为 items 的 proptype。
基本上在父组件的状态下,我有一个名为 filterItems 的对象
filterItems: [
{ id: 1, value: 'Col 1', isChecked: true },
{ id: 2, value: 'Col 2', isChecked: true },
{ id: 3, value: 'Col 3', isChecked: true },
{ id: 4, value: 'Col 4', isChecked: true },
{ id: 5, value: 'Col 5', isChecked: true },
{ id: 6, value: 'Col 6', isChecked: true },
{ id: 7, value: 'Col 7', isChecked: true },
{ id: 8, value: 'Col 8', isChecked: true },
{ id: 9, value: 'Col 9', isChecked: true },
{ id: 10, value: 'Col 10', isChecked: true },
],
isCustomizedOpen: false,
现在我基本上是这样调用Child
{this.state.isCustomizedOpen &&
<CustomizedViewInv
items={filterItems}
/>}
请告诉我如何将这 3 个函数 - getCheckBox、handleCheckChildElement 和 resetFilter 从子页面移动到父页面。
我基本上是 React 的初学者。因此,请帮助我了解将这 3 个函数 - getCheckBox、handleCheckChildElement 和 resetFilter 从子页面移动到父页面需要进行哪些更改。
最佳答案
试试这个方法;让你的容器对组件有更多的控制权 working example
const CheckBox = props => {
return (
<div>
<input
value={props.item.id}
type="checkbox"
checked={props.item.isChecked}
onClick={props.handleCheckChildElement}
/>
{props.item.value}
</div>
);
};
const Button = props => {
return <button onClick={() => props.onClick()}>{props.text}</button>;
};
export default class App extends React.Component {
state = {
filterItems: [
{ id: 1, value: "Col 1", isChecked: true },
{ id: 2, value: "Col 2", isChecked: true },
{ id: 3, value: "Col 3", isChecked: true },
{ id: 4, value: "Col 4", isChecked: true },
{ id: 5, value: "Col 5", isChecked: true },
{ id: 6, value: "Col 6", isChecked: true },
{ id: 7, value: "Col 7", isChecked: true },
{ id: 8, value: "Col 8", isChecked: true },
{ id: 9, value: "Col 9", isChecked: true },
{ id: 10, value: "Col 10", isChecked: true }
]
};
handleCheckChildElement(e) {
alert(e.target.value);
}
resetFilter() {
alert("resetFilter");
}
applyFilter() {
alert("applyFilter");
}
render = () => {
return (
<div>
{this.state.filterItems.map(item => (
<CheckBox
item={item}
handleCheckChildElement={this.handleCheckChildElement.bind(this)}
/>
))}
<Button text="Reset" onClick={this.resetFilter.bind(this)} />
<Button text="Apply" onClick={this.applyFilter.bind(this)} />
</div>
);
};
}
关于javascript - 如何将这三个函数全部写在父组件中,而不是写在子组件中 - ReactJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53794112/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!