我正在测试将分类法/ term / 1页加载到包装'ajax-content'中,但无法弄清楚这是否正确:
drupal_add_library('system', 'drupal.ajax');
module_load_include('inc', 'taxonomy', 'taxonomy.pages');
$link = array(
'#type' => 'link',
'#title' => t('Some Taxonomy'),
'#href' => 'taxonomy/term/1', //'taxonomy/term/1/nojs',
'#attributes' => array('class' => array('use-ajax')),
'#ajax' => array(
'callback' => 'taxonomy_term_page',
'wrapper' => 'ajax-content',
'method' => 'replace',
'effect' => 'fade',
),
);
print "<div id='ajax-content'></div>" . drupal_render($link);
这总是返回200错误。
任何提示都会非常感激。
由于