Where does drupal 7 store the actual content in the database?(drupal 7 将数据库中的实际内容存储在哪里?)
问题描述
我打开了 drupal 7 的数据库并在表 node
、node_revisions
和 node types
中查找,但找不到drupal 存储节点(内容)的实际正文.
有人知道吗?
I've opened a database of drupal 7 and looked up in the tables node
, node_revisions
and node types
and couldn't find where drupal stores the actual body of the node (content).
Does anyone have a clue?
推荐答案
哦,我刚刚找到它.在 D7 中,他们实现了字段以允许在内容中自定义字段.因此,节点主体被认为只是一个字段,其值现在存储在表 field_revision_body(在 D7 中)而不是 node_revision(在 D6 中)中.
Oh, I've just found it. In D7 they implemented fields to allow custom fields in content. So, the node body is considered just a field and its value is now stored in the table field_revision_body (in D7) instead of node_revision (in D6).
如果您引用了任何有用的有关 drupal 数据库结构的参考资料.
If you cite any references for drupal database structure that would be helpful.
感谢阅读.
这篇关于drupal 7 将数据库中的实际内容存储在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:drupal 7 将数据库中的实际内容存储在哪里?


基础教程推荐
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- php中的PDF导出 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- php中的foreach复选框POST 2021-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01