是否可以使用模板文件为AJAX调用返回HTML?

时间:2011-12-02 21:22:53

标签: drupal drupal-7 drupal-theming drupal-ajax

我正在研究的网站广泛使用AJAX来延迟加载页面数据并进行Twitter样式分页。我真的希望能够通过模板文件呈现HTML,因为它比在PHP函数中构建HTML字符串更容易编码和维护。

有没有办法从数据库获取数据并将其传递给加载tpl文件的主题函数?


解决方案: How do I decide between theme('node', $node) and drupal_render($node->content) for programmatic $node output

$node = node_load($nid);
$node_view = node_view($node);
echo drupal_render($node_view);

1 个答案:

答案 0 :(得分:4)

是的,你可以。

Drupal 7 AJAX需要一个回调,它需要返回已更新并需要返回给浏览器的表单元素,或者包含HTML或自定义Ajax命令数组的字符串。

其中一个AJAX命令是ajax_command_html(),您可以使用它来插入使用模板从主题函数返回的HTML。

您可以使用与以下代码类似的代码:

function mymodule_ajax($form, &$form_state) {
  $form = array();
  $form['changethis'] = array(
    '#type' => 'select',
    '#options' => array(
      'one' => 'one',
      'two' => 'two',
      'three' => 'three',
    ),
    '#ajax' => array(
      'callback' => 'mymodule_ajax_callback',
      'wrapper' => 'replace_div',
     ),
  );

  // This entire form element will be replaced with an updated value.
  $form['html_div'] = array(
    '#type' => 'markup',
    '#prefix' => '<div id="replace_div">',
    '#suffix' => '</div>',
  );
  return $form;
}

function mymodule_ajax_callback($form, $form_state) {
  return theme('mymodule_ajax_output', array());
}

主题函数在hook_theme()中定义,如下面的代码所示:

function mymodule_theme($existing, $type, $theme, $path) {
  return array(
    'mymodule_ajax_output' => array(
      'variables' => array(/* the variables that will be passed to the template file */), 
      'template' => 'mymodule-ajax-output',
    ),  
  );
}

注意模板文件名必须与主题函数的名称相匹配;您可以使用主题函数名称使用下划线的连字符,但是您不能使用名为“foo”的主题函数将“bar”用作模板文件的名称。
hook_theme()报告的模板文件的名称不包括在查找模板文件时从Drupal添加的扩展名(“.tpl.php”)。