Sending correct JSON content type for CakePHP(为 CakePHP 发送正确的 JSON 内容类型)
问题描述
在我的 CakePHP 应用程序中,我返回 JSON 并针对某些请求退出.一个例子是尝试访问 API 以作为 GET 请求登录:
In my CakePHP app I return JSON and exit for certain requests. An example of this would be trying to access the API for a login as a GET request:
header('Content-Type: application/json');
echo json_encode(array('message'=>'GET request not allowed!'));
exit;
但是,我必须在 echo 前面加上内容类型的前缀,才能将其作为 JSON 发送.否则我在另一端的代码解释不同.
However I am having to prefix the echo with the content type in order for it to be sent as JSON. Otherwise my code at the other end interprets it different.
关于如何解决这个问题的任何想法?或者至少改进它.
Any ideas on how to get around this? Or at least improve it.
更新:Cake 2.3.0 版
推荐答案
您可以利用新的 2.x 响应对象:
You can leverage the new 2.x response object:
public function youraction() {
// no view to render
$this->autoRender = false;
$this->response->type('json');
$json = json_encode(array('message'=>'GET request not allowed!'));
$this->response->body($json);
}
参见 http://book.cakephp.org/2.0/en/controllers/request-response.html#cakeresponse
您也可以使用强大的休息功能和 RequestHandlerComponent 来自动实现这一点:http://book.cakephp.org/2.0/en/views/json-and-xml-views.html
Also you could use the powerful rest features and RequestHandlerComponent to achieve this automatically as documented: http://book.cakephp.org/2.0/en/views/json-and-xml-views.html
您只需要允许扩展 json 并将您的操作称为 /controller/action.json
.然后 cake 将自动使用 JsonView,您只需将数组传入.视图类会将其转换为 JSON 和有效响应.
You just need to allow the extension json and call your action as /controller/action.json
.
Then cake will automatically use the JsonView and you can just pass your array in. It will be made to JSON and a valid response by the view class.
这两种方式都比您的退出"解决方案更简洁 - 尝试对包含 die()/exit() 的代码进行单元测试.这将悲惨地结束.所以最好一开始就不要在你的代码中使用它.
Both ways are cleaner than your "exit" solution - try to unit-test code that contains die()/exit(). This will end miserably. So better never use it in your code in the first place.
这篇关于为 CakePHP 发送正确的 JSON 内容类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为 CakePHP 发送正确的 JSON 内容类型
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01