我有一个使用 HOC 的组件。HOC 需要 this.context 但由于某种原因 this.context 没有被传递。我究竟做错了什么?泰
零件:
import React, { Component } from 'react';
import withTracking from './hocs/withTracking';
class NamePage extends Component {
componentDidMount() {
console.log(this.context.mixpanel) // WORKS
}
render() {
return (
...
);
}
}
NamePage.contextTypes = {
mixpanel: PropTypes.object.isRequired
};
export default withTracking('View Page: NamePage')(NamePage);
特设的
import { lifecycle } from 'recompose';
export function withTracking(eventTitle) {
return lifecycle({
componentDidMount() {
console.log(this.context.mixpanel) // UNDEFINED - fail-y?
}
});
}
export default withTracking;
如果我在组件中输出, console.log 将undefined
返回正确返回的位置。
我究竟做错了什么?谢谢