0
我正在使用'react-virtualized'來呈現無限滾動列表。帶有無限滾動的動態高度(react-virtualized)
但是,我無法動態地呈現rowHeight
。我做了一個嘗試,但它只適用於桌面,感覺不對。
我試過下面的例子,但沒有成功。
什麼是計算真實行高的正確方法?
它應該對移動應答。
下面是一個例子:
https://codesandbox.io/s/ADARgvlxB
class App extends React.Component {
render() {
return (
<div>
<AutoSizer>
{({ height, width }) => (
<List
height={600}
width={width}
rowCount={foo.length}
rowHeight={({ index }) => {
const x = foo[index];
if (x.name.length < 10) { return 20; }
else if (x.name.length > 9) { return 40;}
}}
rowRenderer={({ index, style }) => {
const x = foo[index];
return (
<div key={index} style={style}>
{x.name}
</div>
);
}}
/>
)}
</AutoSizer>
</div>
);
}
}
正如我所提到的,我試圖追隨他們的例子,但沒有成功。圖像設置高度(px),而我將考慮文字。 – Ycon
您鏈接到的代碼沙盒似乎沒有遵循該示例,因爲它不使用「CellMeasurer」。檢查我再次提供的鏈接。 – brianvaughn