如果我想将 Google 表格作为远程源连接到React Grid(来自 DevEstreme),我该怎么做?
问问题
102 次
1 回答
0
好吧,DevExtream Reactive Grid 只能处理以下格式的数据:
<Grid
rows={[
{ id: 0, product: 'DevExtreme', owner: 'DevExpress' },
{ id: 1, product: 'DevExtreme Reactive', owner: 'DevExpress' },
]}
columns={[
{ name: 'id', title: 'ID' },
{ name: 'product', title: 'Product' },
{ name: 'owner', title: 'Owner' },
]}>
<Table />
</Grid>
您需要使用列的name
字段将列与行字段相关联。这意味着如果您可以从您的 Google Sheet 中获取数据(例如在Google Sheets API - Reading and Writing Values中)并据此修改它们,您将能够显示它们。
如果您需要自动连接,答案是否定的。Reactive Grid 只接受这种数据格式。否则,您需要手动处理数据。
于 2019-11-29T11:03:10.657 回答