如何使用 Code Igniter REST_Controller 定义内容类型
Posted
技术标签:
【中文标题】如何使用 Code Igniter REST_Controller 定义内容类型【英文标题】:How to define content-type with Code Igniter REST_Controller 【发布时间】:2012-06-06 03:40:28 【问题描述】:我正在使用 REST_Controller 扩展 CI_Controller,由于某种原因,我的请求都以 text/html 而不是 json 的内容类型返回。在我的配置中,我将 json 设置为默认格式:
$config['rest_default_format'] = 'json';
我的结果以 JSON 格式返回,但未设置内容类型。任何人都可以帮助我解决我的遗漏吗?
【问题讨论】:
【参考方案1】:我不确定配置是否设置了格式。但是一个简单的解决方法可能只是使用输出类来设置标题内容类型,例如:
$this->output
->set_content_type('application/json')
->set_output(json_encode(array('foo' => 'bar')));
(摘自手册:here)
【讨论】:
【参考方案2】:虽然在每个函数中设置 contect_type 会有所帮助,但可以通过在构造函数中设置 this 在控制器级别使其通用。
public function __construct()
parent::__construct();
...
$this->output->set_content_type('application/json');
因此您只需在每个功能级别设置输出
$this->output->set_output('"message":"Failure"');
这对我有用。
【讨论】:
以上是关于如何使用 Code Igniter REST_Controller 定义内容类型的主要内容,如果未能解决你的问题,请参考以下文章
Eclipse 中的 Code Igniter 2.1 自动完成/智能感知
使用 JWT 在 Code Igniter 4 中创建登录系统的过程