是否有简便的方法来执行以下操作?
import { ACTION, ACTION2, ACTION3 } from './actionTypes';
当actionTypes看起来像:
export const ACTION = 'ACTION';
export const ACTION2 = 'ACTION2';
...
我也知道我可以像import * as actionTypes from './actionTypes';
一样导入它,但在我看来,它使得代码不那么令人愉快,因为使用的操作看起来像actionTypes.ACTION
。问题是我现在有很多动作类型,并且不喜欢按名称导入批次所需的超长导入语句的外观