当前位置:  开发笔记 > 编程语言 > 正文

在ES6中公开组件功能

如何解决《在ES6中公开组件功能》经验,为你挑选了0个好方法。

我想实现以下功能https://facebook.github.io/react/tips/expose-component-functions.html,但我使用的是ES6语法

@controllable(['center', 'zoom', 'hoverKey', 'clickKey', 'selectedCountry'])
export default class ContactMapView extends Component {
    constructor(props) {
        super(props);
        this.initialFunc = this.initialFunc.bind(this);
    }
    initialFunc() { … }

当我在父类中调用initialFunc时

componentDidMount() {
    MapStore.addChangeListener(this._onChange.bind(this));
    this.refs['mapView'].initialFunc();
};

我收到以下错误:

TypeError: this.refs.mapView.initialFunc is not a function

任何想法我怎么能运行我的子组件的功能?

推荐阅读
郑谊099_448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有