我的管理员和资源如何配置的一些示例:
<Admin
dashboard={Dashboard}
dataProvider={dataProvider}
appLayout={MainLayout}
title="Removed So I Don't Get Fired"
>
<Resource name="apples" list={ApplesList} />
<Resource name="pears" list={PearsList} show={PearShow} />
<Resource name="peaches" list={PeachesList} create={PeachesCreate} edit={PeachesEdit}/>
</Admin>
工作的路线都是:
host.com/#/apples
host.com/#/pears
host.com/#/pears/pearnumber/show
ETC...
如果我尝试访问:
host.com/apples
host.com/pears
host.com/pears/pearnumber/show
浏览器被重定向到:
host.com/apples#/
host.com/pears#/
host.com/pears/pearnumber/show#/
如果您需要任何其他信息,请告诉我。