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



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

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


解决方案:我如何决定主题('node', $node)和drupal_render($node->content)之间的编程$node输出

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

可以。

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")。

相关内容

  • 没有找到相关文章

最新更新