(ReactNative)如何在componentDidmount中导出变量?

时间:2018-02-22 07:35:27

标签: reactjs react-native

我不喜欢全局变量。 但是我需要从fileA导入一个变量到fileB。 我不想使用redux。

我只是将componentDidmount中的变量(颜色)传递给另一个文件。

你有什么想法吗?

例如

// fileA
class A extends Component {
  componentDidMount() {
    const foo = 'string';
  }
}

// fileB
import { foo } from './fileA';
alert(foo);

我想这样做。

0 个答案:

没有答案