Notion API - Notion数据库模型也是块?
Notion API - Notion database model is also a block?
https://developers.notion.com/reference/block
A block object represents content within Notion. Blocks can be text, lists, media, and more. A page is a type of block, too!
据我所知,Notion中的一切都是一个块,一个页面是一个块,有子块;所以数据库也是一个块?
如果我创建一个概念克隆,我应该使用这样的模型:
- 用户
- 工作区
- 块(页面、文本、图像,to_do...)
- 数据库
或喜欢:
- 用户
- 工作区
- 块(数据库、页面、文本、图像,to_do...)
非常感谢。
根据Notion API参考资料,database, page, block是三个不同的对象。一层一层。
Database objects describe the property schema of a database in Notion. Pages are the items (or children) in a database.
The Page object contains the property values of a single Notion page. { … } Page content is available as blocks.
页面对象与块对象不共享相同的属性。他们不应该被认为是同一个模型。
建议的模型设计应该是;
- 用户
- 工作区
- 数据库
- 页数
- 块(文本、图像、to_do...)
https://developers.notion.com/reference/block
A block object represents content within Notion. Blocks can be text, lists, media, and more. A page is a type of block, too!
据我所知,Notion中的一切都是一个块,一个页面是一个块,有子块;所以数据库也是一个块?
如果我创建一个概念克隆,我应该使用这样的模型:
- 用户
- 工作区
- 块(页面、文本、图像,to_do...)
- 数据库
或喜欢:
- 用户
- 工作区
- 块(数据库、页面、文本、图像,to_do...)
非常感谢。
根据Notion API参考资料,database, page, block是三个不同的对象。一层一层。
Database objects describe the property schema of a database in Notion. Pages are the items (or children) in a database.
The Page object contains the property values of a single Notion page. { … } Page content is available as blocks.
页面对象与块对象不共享相同的属性。他们不应该被认为是同一个模型。
建议的模型设计应该是;
- 用户
- 工作区
- 数据库
- 页数
- 块(文本、图像、to_do...)