Attempted import error: '...' is not exported from '...' error after updating 'react-scripts' to version 2.0.0
Attempted import error: '...' is not exported from '...' error after updating 'react-scripts' to version 2.0.0
我将 react-scripts
包更新到版本 2.0.0,现在我收到以下导入错误 类:
Attempted import error: 'MyClass' is not exported from '...'
这是给我一个错误的代码:
import {MyClass} from '...'
以及导入的文件:
class MyClass{
constructor(){
...
}
....
}
module.exports = {
...,
MyClass: MyClass
}
解决方法:
这是解决问题的代码:
export class MyClass{
constructor(){
}
}
尝试只导出 class 而不是将其设为对象。像:
module.exports = 我的班级;
我将 react-scripts
包更新到版本 2.0.0,现在我收到以下导入错误 类:
Attempted import error: 'MyClass' is not exported from '...'
这是给我一个错误的代码:
import {MyClass} from '...'
以及导入的文件:
class MyClass{
constructor(){
...
}
....
}
module.exports = {
...,
MyClass: MyClass
}
解决方法: 这是解决问题的代码:
export class MyClass{
constructor(){
}
}
尝试只导出 class 而不是将其设为对象。像: module.exports = 我的班级;