如何获取Yii中的所有数据作为参数中的Json输出

时间:2015-10-09 07:21:12

标签: php json yii

我试图以Yii格式获取json格式的所有数据,并且我已经阅读了有关此内容的所有内容:

http://www.yiiframework.com/wiki/612/simple-web-apis-for-your-yii-app/ 如你所见,下载不工作

我需要自动获取所有数据的WordPress api:

https://wordpress.org/plugins/json-api/

或这个例子: http://iseetv.biz/api/

它在wordpress/api地址中获取所有数据为json。我需要像wordpress api这样的数据。但是,所有数据是什么?我怎么能像json completly那样得到那些数据呢?

例如这是我的控制器:

<?php

class SiteController extends Controller
{
    /**
     * Declares class-based actions.
     */
    public function actions()
    {
        return array(
            // captcha action renders the CAPTCHA image displayed on the contact page
            'captcha'=>array(
                'class'=>'CCaptchaAction',
                'backColor'=>0xFFFFFF,
            ),
            // page action renders "static" pages stored under 'protected/views/site/pages'
            // They can be accessed via: index.php?r=site/page&view=FileName
            'page'=>array(
                'class'=>'CViewAction',
            ),
        );
    }

    /**
     * This is the default 'index' action that is invoked
     * when an action is not explicitly requested by users.
     */
    public function actionIndex()
    {
        // renders the view file 'protected/views/site/index.php'
        // using the default layout 'protected/views/layouts/main.php'
        $this->render('index');
    }

    /**
     * This is the action to handle external exceptions.
     */
    public function actionError()
    {
        if($error=Yii::app()->errorHandler->error)
        {
            if(Yii::app()->request->isAjaxRequest)
                echo $error['message'];
            else
                $this->render('error', $error);
        }
    }

    /**
     * Displays the contact page
     */
    public function actionContact()
    {
        $model=new ContactForm;
        if(isset($_POST['ContactForm']))
        {
            $model->attributes=$_POST['ContactForm'];
            if($model->validate())
            {
                $name='=?UTF-8?B?'.base64_encode($model->name).'?=';
                $subject='=?UTF-8?B?'.base64_encode($model->subject).'?=';
                $headers="From: $name <{$model->email}>\r\n".
                    "Reply-To: {$model->email}\r\n".
                    "MIME-Version: 1.0\r\n".
                    "Content-Type: text/plain; charset=UTF-8";

                mail(Yii::app()->params['adminEmail'],$subject,$model->body,$headers);
                Yii::app()->user->setFlash('contact','Thank you for contacting us. We will respond to you as soon as possible.');
                $this->refresh();
            }
        }
        $this->render('contact',array('model'=>$model));
    }

    /**
     * Displays the login page
     */
    public function actionLogin()
    {
        $model=new LoginForm;

        // if it is ajax validation request
        if(isset($_POST['ajax']) && $_POST['ajax']==='login-form')
        {
            echo CActiveForm::validate($model);
            Yii::app()->end();
        }

        // collect user input data
        if(isset($_POST['LoginForm']))
        {
            $model->attributes=$_POST['LoginForm'];
            // validate user input and redirect to the previous page if valid
            if($model->validate() && $model->login())
                $this->redirect(Yii::app()->user->returnUrl);
        }
        // display the login form
        $this->render('login',array('model'=>$model));
    }

    /**
     * Logs out the current user and redirect to homepage.
     */
    public function actionLogout()
    {
        $arr = array('controller'=>$this->id, 'action'=>$this->action->id,'status' =>'OK');
        Yii::app()->user->logout();
        $this->redirect(Yii::app()->homeUrl);
    }


}

怎么做?

1 个答案:

答案 0 :(得分:0)

在你的函数中你想要返回类似JSON的API数据,你应该有这样的东西

public function actionSomeAPI()
{
    $data = GetDataFrom::model()->findAll();

    //... parse the data to reduce it to what you want

    // encode the data as JSON and send it to
    // the client
    echo CJavaScript::jsonEncode($data);

    // since we don't want to render the view,
    // and we already have the data we want sent
    // to the browser, we have to halt Yii here.
    Yii::app()->end();
}