您正在执行此操作,
import PostList from '../components/PostList';因此需要
exportdefault在PostList.js文件中使用。
否则,您需要做
import { PostList } from '../components/PostList';。对于感兴趣的人,这是一篇有关es6导入/导出语法的不错的文章:http ://www.2ality.com/2014/09/es6-modules-
final.html

您正在执行此操作,
import PostList from '../components/PostList';因此需要
exportdefault在PostList.js文件中使用。
否则,您需要做
import { PostList } from '../components/PostList';。对于感兴趣的人,这是一篇有关es6导入/导出语法的不错的文章:http ://www.2ality.com/2014/09/es6-modules-
final.html