web-dev-qa-db-ja.com

yiiでjson形式(application / json)として応答を取得する方法は?

Yiiでjson形式(application/json)として応答を取得する方法は?

50
tq0fqeu

Yii 1:

(ベース)コントローラーでこの関数を作成します。

/**
 * 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:

Yii 2にはこの機能が組み込まれています 、コントローラーアクションの最後に次のコードを使用します。

Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
return $data;
86
marcovtwout
$this->layout=false;
header('Content-type: application/json');
echo CJavaScript::jsonEncode($arr);
Yii::app()->end(); 
18
Neil McGuigan

コントローラー内の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;
}
15
$this->layout=false;
header('Content-type: application/json');
echo json_encode($arr);
Yii::app()->end(); 
9
tq0fqeu
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');
    }

}
5

を使用してもう1つの簡単な方法

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);
        }
}

乾杯:)

0
Developer

レンダリングするコントローラーアクションで [〜#〜] json [〜#〜] data、例:actionJson()

public function actionJson(){
    $this->layout=false;
    header('Content-type: application/json');
    echo CJSON::encode($data);
    Yii::app()->end(); // equal to die() or exit() function
}

もっと見る Yii API

0
Truongnq