Drupal,搜索动态创建的页面
我的 drupal 站点包含一个页面,其中产品详细信息是根据产品 ID 从数据库生成的。一项要求是产品详细信息可搜索。 Drupal 搜索对静态页面建立索引。如何索引动态页面中生成的详细信息。
edit1:我正在使用 php 过滤器来生成页面。例如 drupalurl/products/id1、drupalurl/products/id2、drupalurl/products/id3 都将从数据库中提取不同的内容。
My drupal site contains a page where product details are generated from the database based on product id. One requirement is that product details be searchable. The Drupal search indexes the static pages. How can I index the details generated in the dynamic pages.
edit1: I am using php filter to generate the page. Ex drupalurl/products/id1, drupalurl/products/id2, drupalurl/products/id3 all will pull different content from the db.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hook_update_index - 可能是解决您的问题。您将需要“渲染”动态字段并使用此挂钩将它们发送到索引器。
hook_update_index - might be the solution to your problem. You will need to "render" your dynamic fields and send them to the indexer using this hook.