我在两个不同的文件中有两个具有相同名称(reducer
)的导出函数
我可以像这样导入它们:
import { * } as appReducer from '../app.reducer';
import { * } as otherReducer from './other.reducer';
并以appReducer.reducer
如果我不想用*导入所有内容,为什么我不能这样做:
import { reducer } as appReducer from './app.reducer';
可能还有其他方式吗?
答案 0 :(得分:2)