1

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

怎么了: Colorswatches.js 组件正在加载并显示在浏览器中,但 onClick 不起作用。没有显示控制台日志。

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

服务器端渲染后如何让点击事件在客户端工作?

编辑:使用 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);
4

3 回答 3

0

我的猜测是以下情况正在发生:

  • 原来是this指挂载的DOM组件,不是你想要的。
  • 将 onClick 包装到onClick={()=>this.handleClick()}正确方向是迈出的一步,但还不够。thisnow 指的是一个反应组件,但不是正确的。它是在.map函数内部定义的,所以它指的是colorSlice. 这不是你想要的。

我的建议更进一步:

在渲染内部,在您的 return 语句之前,添加以下行

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

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

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

希望这可以帮助。

于 2016-03-22T22:28:34.930 回答
0

也许试试这个,

首先制作一个包含这个的var。这应该发生在你的render()

var self = this;

然后在你的 onClick

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

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

希望能成功!

于 2016-03-24T11:12:39.907 回答
-1

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

然后,在渲染函数中:

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

于 2016-03-21T20:41:00.117 回答