您可能能够输出带有响应的标题。然后用exit();
.
默认值通常是返回一个值,让进程为您编码和输出。
基于
http://v2.wp-api.org/extending/adding/function my_awesome_func( $data ) {
header("Content-Type: text/plain");
print_r( array(\'foo\'=>\'bar\'));
exit();
}
add_action( \'rest_api_init\', function () {
register_rest_route( \'myplugin/v1\', \'/test/\', array(
\'methods\' => \'GET\',
\'callback\' => \'my_awesome_func\',
) );
} );