【发布时间】:2011-02-18 23:15:13
【问题描述】:
如何在 yii 中获取 json 格式的响应(application/json)?
【问题讨论】:
如何在 yii 中获取 json 格式的响应(application/json)?
【问题讨论】:
在你的(基础)控制器中创建这个函数:
/**
* Return data to browser as JSON and end application.
* @param array $data
*/
protected function renderJSON($data)
{
header('Content-type: application/json');
echo CJSON::encode($data);
foreach (Yii::app()->log->routes as $route) {
if($route instanceof CWebLogRoute) {
$route->enabled = false; // disable any weblogroutes
}
}
Yii::app()->end();
}
然后只需在操作结束时调用:
$this->renderJSON($yourData);
Yii 2 has this functionality built-in,在控制器操作的末尾使用以下代码:
Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return $data;
【讨论】:
$this->layout=false;
header('Content-type: application/json');
echo CJavaScript::jsonEncode($arr);
Yii::app()->end();
【讨论】:
对于控制器内部的 Yii2:
public function actionSomeAjax() {
$returnData = ['someData' => 'I am data', 'someAnotherData' => 'I am another data'];
$response = Yii::$app->response;
$response->format = \yii\web\Response::FORMAT_JSON;
$response->data = $returnData;
return $response;
}
【讨论】:
$this->layout=false;
header('Content-type: application/json');
echo json_encode($arr);
Yii::app()->end();
【讨论】:
$this->layout=false,因为Yii::app()->end() 将终止应用程序而不输出布局。
class JsonController extends CController {
protected $jsonData;
protected function beforeAction($action) {
ob_clean(); // clear output buffer to avoid rendering anything else
header('Content-type: application/json'); // set content type header as json
return parent::beforeAction($action);
}
protected function afterAction($action) {
parent::afterAction($action);
exit(json_encode($this->jsonData)); // exit with rendering json data
}
}
class ApiController extends JsonController {
public function actionIndex() {
$this->jsonData = array('test');
}
}
【讨论】:
使用更简单的方法
echo CJSON::encode($result);
示例代码:
public function actionSearch(){
if (Yii::app()->request->isAjaxRequest && isset($_POST['term'])) {
$models = Model::model()->searchNames($_POST['term']);
$result = array();
foreach($models as $m){
$result[] = array(
'name' => $m->name,
'id' => $m->id,
);
}
echo CJSON::encode($result);
}
}
干杯:)
【讨论】:
对于 Yii2 使用这个简单易记的选项
Yii::$app->response->format = "json";
return $data
【讨论】:
Yii::app()->end()
我认为这个解决方案不是结束应用程序流的最佳方式,因为它使用 PHP 的exit() 函数,巫婆意味着立即退出执行流。是的,有 Yii 的 onEndRequest 处理程序和 PHP 的 register_shutdown_function,但它仍然过于宿命。
对我来说更好的方法是这个
public function run($actionID)
{
try
{
return parent::run($actionID);
}
catch(FinishOutputException $e)
{
return;
}
}
public function actionHello()
{
$this->layout=false;
header('Content-type: application/json');
echo CJavaScript::jsonEncode($arr);
throw new FinishOutputException;
}
因此,应用程序流甚至在之后继续执行。
【讨论】: