我正在使用admin-on-rest进行管理页面,但我没有找到如何更改响应列表页面上的重定向位置。
<Responsive
small={ ...
使用<SimpleList>
并且不接受重定向,例如<SimpleForm redirect="show">
或我尝试过的其他选项。
Bellow是代码,实际上与the example非常相似。
<Responsive
small={
<SimpleList
primaryText={record => record.name}
secondaryText={record => `${record.email}`}
tertiaryText={record => `${record.score} score`}
/>
}
.
.
.
有没有办法在小型响应式页面上重定向到显示页面?