Drupal:创建节点或创建任何内容类型时如何查看查询
我想知道创建内容或创建任何节点时的插入查询。
有什么简单的例子吗?
这样做的主要目的是我想在创建节点时记录条目。
所以我创建了一个历史内容。当用户创建某种类型的内容时,我使用规则和自定义 PHP 将他/她的详细信息插入到表中。
效果很好。我可以在数据库表中看到,但问题是我看不到详细信息。当我为历史表创建视图时,它们不会显示。
当我创建历史内容时,它会显示在视图中。
也许插入内容有一些依赖性,我不知道。
I want to know the insert query when the content is created or any node is created.
What is a simple example for that?
The main purpose of doing this is I want to log the entries when the node is created.
So I have created a history content. When the user creates certain type of content, I have inserted his/her details in to the table by using rules and custom PHP.
It works fine. I can see in the database table but the problem is I can't see the details. When I create a view for the history table, they won't show up.
When I create the history content it displays in the view.
Maybe the inserting into the content have some dependencies, I don't know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Devel 模块 可用于查看在 Drupal 页面上执行的查询。
The Devel module can be used to see the queries that are executed on a Drupal page.