drupal view如何执行diplay而不转发

发布于 2024-11-26 20:14:49 字数 335 浏览 0 评论 0原文

所以我有以下代码:

  $name = 'somename';
  $display_id = 'someid';

  if ($view = views_get_view($name)) {
    return $view->execute_display($display_id);
  }

如果我这样做,Drupal将重定向到与显示id对应的实际视图页面...

有没有一种方法可以使Drupal返回由生成的HTML而不是重定向到实际页面$view->execute_display() 以便我可以回显它而不是进行完全重定向?

So I have the following code:

  $name = 'somename';
  $display_id = 'someid';

  if ($view = views_get_view($name)) {
    return $view->execute_display($display_id);
  }

If I do this, Drupal would redirect to the actual view page corresponding to the display id...

Is there a way so that instead of redirecting to the actual page, Drupal would instead return the HTML generated by the $view->execute_display() so that I can echo it rather than do a full redirection?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾性傲以野 2024-12-03 20:14:49
$output = views_embed_view($view_name, $display_id, $args);

$display_id 是一个可选参数。
$args 是一个可选参数,如果使用,您只需传入一个包含按顺序排列的值的数组。

$output = views_embed_view($view_name, $display_id, $args);

$display_id is an optional argument.
$args is an optional argument, and if used, you just pass in an array with the values in order.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文