const cell = await rows.Item(1).Cells.Item(1)
cell.Range.Text = 'name单元格名称' // 设置单元格text - 成功
const range = await cell.Range
console.log(range.Text) // 获取单元格text-未成功
获取单元格里面的text,是有什么别的方法吗?
const cell = await rows.Item(1).Cells.Item(1)
cell.Range.Text = 'name单元格名称' // 设置单元格text - 成功
const range = await cell.Range
console.log(range.Text) // 获取单元格text-未成功
获取单元格里面的text,是有什么别的方法吗?