错误传递函数onClick in react

时间:2017-01-28 07:46:15

标签: javascript reactjs es6-class

我有两个文件。列表组件和单个项组件。在我的应用中,用户可以选择多个项目。然后我在“list”“items”中创建一个state元素,我的想法是当用户点击item按钮时,list元素通知List Component并从“list”中保存Items数组中的项目。

我有下一个代码

List.jsx:

registrarItems(data,item){
        console.log(data,"aqui 1 con",item);
        let items = this.state.itemsAgregados.slice();
        if(!items.indexOf(data.id_producto)){
            console.log("no se encuentra");
            items.push(id);
            this.setState({
                'itemsAgregados':items
            });

        }else{
            console.log("ya existe");
            item.removerSeleccion();
        }
        console.log("registrando items",id);
    }
 render() {
        return (
            <div className="content-app">
                <Navbar data={this.menu}/>
                <div className="container lista-productos">
                    {
                        this.state.productos.map((producto, index) => {
                            return (
                                <Item data={producto}
                                      registro = {this.registrarItems}
                                      key={producto.id_producto}/>
                            );
                        })
                    }
                </div>
            </div>
        );
    }

和Item.jsx:

 render() {

        let props = this.props;
        let img = JSON.parse(props.data.imagen);
        let imgPath = Rutas.apiStatic + 'img/productos/' + props.data.id_producto + '/' + img.sm;
        props.data.items  = this;

        return (
            <div className="row item-listado">
                <div className="col-xs-3">
                    <img src={imgPath} className="img-circle img-item"/>
                </div>
                <div className="col-xs-7">
                    <Link to={Rutas.producto + props.data.identificador}>
                        <h3 className="titulo">{props.data.titulo}</h3>
                        <span className="price">$ {props.data.precio}</span>
                    </Link>
                </div>
                <div className="col-xs-2 text-right">
                    <ul className="list-unstyled list-acciones">
                        <li>
                            <a href="#" onClick={()=>props.registro(props.data,this)} className={this.state.classAdd}>
                                <i className="fa fa-plus"></i>
                            </a>
                        </li>

                    </ul>
                </div>
            </div>
        )
    }

正如您所看到的,我将“registrarItems”方法作为参数传递给Item,在那里,我将此作为onClick事件添加到项目的标记中。但是我需要将“data”和自己的“item”元素传递给onclick函数。第一个,用于保存在Items数组中单击的元素,或者将其删除(如果它已经存在),因为该按钮可能具有切换功能。但在我的“console.log”中,使用箭头函数传递onClick方法的两个参数显示为“未定义”。 我看到一些例子,我没有得到我的错误。有谁能够帮我?感谢。

1 个答案:

答案 0 :(得分:0)

最终解决这个问题很简单。我用他的评论中的 Free-soul 之类的东西解决了这个问题。

首先,我将List Component作为param传递给item。在List的渲染方法中的代码下面:

{
        this.state.productos.map((producto, index) => {
            this.items[producto.id_producto] = producto;
            return (
                <Item data={producto}

                      parent = {this}
                      key={producto.id_producto}/>
            );
        })
    }

然后我在 componentDidMount 方法中获取父param,之后我直接从List方法调用 validarItem 函数,然后传递我需要的参数。 这是我的物品代码:

onClickPlus(id,data) {

        //{Rutas.listas + 'productos/' + props.data.id_producto //Url para pasar uno solo
        this.setState({
            classAdd:'selected'
        })
        if(!this.state.parent.validarItem(this.state.data)){
            this.removerSeleccion()
        }
        if(this.state.seleccionMultiple){

        }
    }
    removerSeleccion(){

        this.setState({classAdd:'normal'})
    }
    componentDidMount(){
        this.setState({
            parent: this.props.parent,
            data : this.props.data
        })
    }

    render() {

        return (
            // more code
                <a href="#" onClick={() => this.onClickPlus(parent)} className={this.state.classAdd}>
                    <i className="fa fa-plus"></i>
                </a>
            //more render code...
        )
    }

我不知道这是不是最佳做法,但对我有用。