是的你可以。
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”)。