有没有办法将内容类型设置为' application / json'对于SLIM 3中的全球响应?
我尝试了以下不起作用的事情:
$app->contentType('application/json');
$app->response->headers->set('Content-Type', 'application/json');
答案 0 :(得分:8)
$app->add(function ($request, $response, $next) {
return $response->withHeader('Content-Type', 'application/json');
});