gpt4 book ai didi

php - Cakephp 的 JsonView

转载 作者:可可西里 更新时间:2023-11-01 12:54:35 26 4
gpt4 key购买 nike

我正在使用新的 CakePHP 2.1,并希望使用 JsonView 使我的 Controller 响应 JQuery 在客户端创建的 ajax 请求。但是,根据文档,这应该使用 JsonView 自动完成。

http://book.cakephp.org/2.0/en/views/json-and-xml-views.html

我在我的 routes.php 文件中添加了这一行

Router::parseExtensions('json');

在我的 Controller 中有

$this->RequestHandler->setContent('json', 'application/json' ); 
$bookings = $this->Bookings->find('all');

$this->set('bookings', $bookings);
$this->set('_serialize', 'bookings');

那么 View 应该已经过时了,但是当我调用它时,他仍然提供一个指向缺失 View 的页面。

最佳答案

您是否使用 application/json header 发出请求?

尝试向/controller/method.json 发出请求这应该强制 View 。如果可行,那么您的 header 可能设置不正确。

关于php - Cakephp 的 JsonView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9854358/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com