this.refs是React中的一个空对象

时间:2016-11-21 06:40:11

标签: reactjs redux refs

我在handleSubmit函数中访问this.refs时遇到问题。

我的容器看起来像这样:

import React, { Component } from 'react'
import { Link } from 'react-router'
import { connect } from 'react-redux'

import { getSomeStuff } from '../actions/someApiActions’


class MyClass extends Component {
  componentWillMount() {
    this.props.dispatch(getSomeStuffFromApi(this.props.params.cuid))
  }

  handleSubmit = () => {
    console.log(this.refs) // always console logs an empty object {}
  }

  render() {
    if(!this.props.results.item){
      return (
        <div>... loading …</div>
      )
    }
    const { name } = this.props.results.item.stuff
    return (
      <div>
        <p><input ref="name" defaultValue={ name }/></p>
        <button type="submit" onClick={this.handleSubmit}>Update</button>
      </div>
    )
  }
}

const mapStateToProps = (state) => {
  return {
    results: state.getSomeStuff
  }
}

export default connect(mapStateToProps)(MyClass)

当我点击提交按钮时,handleSubmit将始终记录一个空对象(即使输入在html中正确呈现)。我注意到我可以在componentDidUpdate方法中访问this.refs而没有任何问题。

为什么在handleSubmit中访问this.refs不起作用?

1 个答案:

答案 0 :(得分:0)

LOL!问题在于babel翻译。在.babelrc中我一直在使用这个预设:

{
  "presets": ["react", "node7", "stage-1"]
}

我不得不改变它:

{
  "presets": ["react", "es2015", "stage-1"]
}