导入非反应类失败

时间:2016-12-01 17:34:55

标签: reactjs ecmascript-6 es6-modules

我在项目中使用react并且导入React.Component类没有问题。但是当试图导入不扩展任何东西的vanilla es6类失败时。即使eslint编译没有问题。导入的类在构造函数中也为null。

import Utils from "../../common/services/Utils";
componentWilReceiveProps(newProps){
    Utils // here is null
}

class Utils {
    test() {
        // do nothing
    }
}

export default Utils;

0 个答案:

没有答案