在React + React路由器中确定范围

时间:2016-05-01 14:35:51

标签: reactjs react-router flux

我有一个范围问题。我可以在构造函数中调用console.log this.props.routeParams.key。但是当在构造函数之外,在filterList函数中,我得到错误“未捕获的TypeError:无法读取未定义的属性'道具'”。我的范围问题是什么?为什么它可以从构造函数中读取它,而不是从filterList函数中读取它?

我正在使用React Router + Flux + React。

import AltContainer from 'alt-container';
import React from 'react';
import { Link } from 'react-router';
import Blogger from './Blogger'
import List from './List'
const rootURL = 'https://incandescent-fire-6143.firebaseio.com/';

import BlogStore from '../stores/BlogStore'
import BlogActions from '../actions/BlogActions';


export default class BlogShow extends React.Component {
  constructor(props) {
    super(props);
    {console.log(this.props.routeParams.key)}
}


filterList(key) {
  if (this.props.routeParams.key===key){
    return Blogstore.state.blog
  }
}

  render() {
             {Object.keys(BlogStore.state.blog).map(this.filterList)}
  }
}

1 个答案:

答案 0 :(得分:4)

正在发生这种情况,因为您的filterList函数未绑定到您的组件

将它绑定在构造函数中

constructor(props) {
    super(props);
    this.filterList = this.filterList.bind(this);
}

你读过它here