#actact-starter-kit React onClick不在页面上触发

时间:2016-03-21 19:34:57

标签: javascript reactjs react-starter-kit

我正在使用React-Starter-Kit,但我遇到的问题是onClick = {this.handleClick}未在浏览器中触发。

发生了什么: Colorswatches.js组件正在加载并显示在浏览器中,但onClick无法正常工作。没有出现控制台日志。

我认为问题是什么:渲染所有服务器端并传递给客户端,客户端获取静态反应html而没有事件绑定。

如何在服务器端呈现后让click事件在客户端工作?

编辑:使用jgldev提供的示例更新代码

编辑2:添加了componentDidMount()函数。使用控制台日志,仍然没有看到登录页面加载

编辑3:我发布的是React-starter-kit的另一部分,它正在轰炸客户端重新渲染。我将第一个答案标记为正确。

src/component/ColorSwatches/ColorSwatches.js:

import React, { Component, PropTypes } from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './ColorSwatches.scss';

class ColorSwatches extends Component {
    constructor(props) {
        super(props);
        this.handleClick = this.handleClick.bind(this);
    }
    componentDidMount() {
        console.log('I was mounted');
    }
    handleClick(){
        console.log('I was clicked');
    }
    render(){
        let colorSlices = this.props.colorSlices;
        let sku = this.props.sku;
        let currentSkuIndex = 0

        return (
            <div className='pdpColors'>
                <div className='colorSwatches' >
                    { colorSlices.map((colorSlice, index) => {
                        return (
                            <div title={colorSlice.color} onClick={()=>this.handleClick()}  key={index}>
                                <img src={colorSlice.swatchURL}/>
                            </div>
                        )
                    })}
                </div>
            </div>
        )
    }
}

export default withStyles(ColorSwatches,s);

3 个答案:

答案 0 :(得分:0)

我的猜测是以下情况:

  • 最初,this引用了挂载的DOM组件,这不是您想要的。
  • 将onClick包装到onClick={()=>this.handleClick()}是朝着正确方向迈出的一步,但还不够。 this现在指的是反应组件,但不是正确组件。它在.map函数内定义,因此它引用colorSlice。这不是你想要的。

我的建议更进一步:

在render中,在return语句之前添加以下行

let that = this; // this refers to ColorSwatches component, as intended

并在映射函数内部将onClick更改为:

onClick={that.handleClick}  // no need to add the wrapper now

希望这有帮助。

答案 1 :(得分:0)

也许试试这个,

首先制作包含此内容的var。这应该发生在render()

var self = this;

然后点击你的onClick

onClick={self.handleClick.bind(this)}

当我遇到这个问题时,这对我有用。

希望它成功!

答案 2 :(得分:-1)

在构造函数上: this.handleClick = this.handleClick.bind(this)

然后,在渲染函数中:

onClick={()=>this.handleClick()}