0

我有一个 API 服务回调函数,它与它自己的模块模板绑定以提供 HTML 输出。据我了解,API 输出的默认内容类型是application/json,所以我不得不手动将其覆盖为text/html.

null但是,无论我尝试什么,我仍然总是得到输出。如何抑制这种不需要的null输出?


custom_module.module

function api_callback_function($a) {
  if (!headers_sent()) {
    drupal_add_http_header('Content-Type', 'text/html');
  }
  print theme('custom_template_name_alias', array(
    'b' => $a
  ));
  return;
}

function custom_module_theme() {
  $themes = array(
    'custom_template_name_alias' => array(
      'template' => 'something-only', // name of template file, sans file extension
      'variables' => array(
        'b' => NULL
      ),
    )
  );
  return $themes;
}

something-only.tpl.php

<?php
$c = $variables['b'];
$path = drupal_get_path('module', 'custom_module');
global $base_url;
?>
<!doctype html><html class="no-js" lang="en">
  <head>
    <!-- HEAD related HTML code comes here -->
  </head>
  <body>
    <div>Current value of variable 'b' = <?php echo $c; ?></div>
  </body>
</html>

输出

输出

4

1 回答 1

1

尝试替换returndie()api_callback_function

于 2016-11-28T20:46:05.433 回答