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 将数据库中的实际内容存储在哪里?


基础教程推荐
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01