gpt4 book ai didi

javascript - react 导出意外 token

转载 作者:数据小太阳 更新时间:2023-10-29 03:59:55 24 4
gpt4 key购买 nike

所以我有这些文件和文件夹。

App.js
modules/
user/
index.js
list.js

在 list.js 中我有 export default (props) => (...)

在 index.js 中,我有 export UserList from './list';

在 App.js 中,我有 import { UserList } from './modules/user';

那里有什么问题吗?因为我得到了

./src/modules/user/index.js
Syntax error: Unexpected token, expected { (1:7)
> 1 | export UserList from './list';

但我不明白这里有什么问题?帮助!

编辑:这是我的 list.js 文件的更多详细信息,但我认为这没什么区别,因为错误在 index.js 中

import React from 'react';
// more import
export default (props) => (
<List {...props}>
...
</List>
);

最佳答案

我看到你直接导出属于另一个文件的组件而不导入它。

你这样做的方式是 ES8 Proposal

在 ES6 中,您可以将组件导出为

 export {default as UserList} from './list'

然后导入为

import { UserList } from './modules/user';

关于javascript - react 导出意外 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45127360/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com