我想根据某些条件更改我的export { default } from 'MyFile'
,所以我可以用字符串变量替换文件吗?
目前我有这样的事情:
let exportFrom
if(SOME_CONDITION) {
exportFrom = '../Something/Blah'
} else {
exportFrom = './SomethingElse'
}
export { default } from exportFrom
我目前无法使用此功能:
解析错误:意外的令牌
有没有办法做到这一点?
还需要注意的重要一点是,我之所以这样做是因为我正在使用nextjs,并且我的其中一个页面在某些情况下必须是一个错误,否则它只是一个处理内容的react组件它的。因此,如果这不是解决问题的方法,该如何解决我的问题?
最佳答案
像这样简单地导出:
export default exportFrom
或者,使用命名导出:
export {
exportFrom,
// you_can_export_any_number,
// of_variables
}
有关完整参考,请参见import和export