我正在研究的网站广泛使用AJAX来延迟加载页面数据并进行Twitter样式分页。我真的希望能够通过模板文件呈现HTML,因为它比在PHP函数中构建HTML字符串更容易编码和维护。
有没有办法从数据库获取数据并将其传递给加载tpl文件的主题函数?
$node = node_load($nid);
$node_view = node_view($node);
echo drupal_render($node_view);
答案 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”)。