Differences between Recognized v
in cellData and p.body.dataStream
#2469
Answered
by
hexf00
IchiharaGaku
asked this question in
Q&A | 常见问题
-
I implemented a function to fetch added data upon button click using Univer Sheet on Next.js: const snapshot = activeWorkbook!.getSnapshot();
const sheetData = Object.values(snapshot.sheets).find((sheet) => {
return sheet.id === sheetName;
}); When examining added data in a sheet, some data is retrieved as Question |
Beta Was this translation helpful? Give feedback.
Answered by
hexf00
Jun 18, 2024
Replies: 1 comment
-
When cell content contains rich text, it uses the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hexf00
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When cell content contains rich text, it uses the
p
property to store the data. You can find more details here: https://univer.ai/guides/sheet/getting-started/cell-data#rich-text.