有一个ContentTypeFilterListener
侦听器可以检查Apigility中的content-type
标头。我不需要它,并且经常导致错误消息:
指定的内容类型无效。
有没有办法完全禁用此功能?
答案 0 :(得分:1)
ContentTypeFilterListener使用EventManager
方法附加到attachAggregate
here in the Module.php on line 46:
$em->attachAggregate($services->get('ZF\ContentNegotiation\ContentTypeFilterListener'));
这意味着您还可以使用detachAggregate
:
$em->detachAggregate($services->get('ZF\ContentNegotiation\ContentTypeFilterListener'));
连接后你应该可以这样做。