这是我玩 Symfony 和 drupal 8 的第一天,所以如果我的问题很明显,请原谅我。
使用 Drupal 7:
drupal_json_output(array('products' => array_values($products)));
exit;
json输出很干净:
{"products":["item_1","item_2",....]}
使用 Drupal 8:
use Symfony\Component\HttpFoundation\JsonResponse;
// some process
print new JsonResponse(array('products' => array_values($products)));
exit;
它与标题一起输出:
HTTP/1.0 200 OK
Cache-Control: no-cache
Content-Type: application/json
Date: Wed, 18 Jul 2012 07:53:26 GMT
{"products":["item_1","item_2",....]}
你如何摆脱这些标题?
我坚持在这里阅读参考资料。
非常感谢任何提示。