我有一个具有以下结构的项目:
data = data.sort_index(axis=1)
print data.loc[:,(slice(None),('open','close'))]
first 001
second close open
date time
20150721 90100 2082.18 2082.18
90200 2083.01 2082.72
90300 2083.98 2083.68
90400 2084.00 2083.63
90500 2084.32 2084.03
90100 2083.65 2084.14
90200 2083.50 2084.08
90300 2083.60 2083.25
90400 2083.80 2084.06
90500 2083.89 2083.61
所以在我的routes.jsx中我想从mainlayouts和hompepage导入模块,这就是我所做的:
Project :
-client
-layouts
-mainlayouts.jsx
-components
-homepage.jxs
-lib
-routes.jsx
但我收到了这个错误:
import {MainLayout} from '../client/layouts/mainlayouts.jsx';
import HomePage from '../client/templates/homepage.jxs';
我做错了什么?
答案 0 :(得分:1)
尝试使用“绝对”路径:
/client/layouts/mainlayouts.jsx
“绝对”,我的意思是相对于你的流星项目根,这是ES2015模块导入的流星特定功能。