dungphanxuan / yii2-starter-kit-lite

Yii2 Starter kit for begin your application
Other
41 stars 19 forks source link

Api response as webview #6

Closed dungphanxuan closed 7 years ago

dungphanxuan commented 7 years ago

Api can response as text/html for webview

dungphanxuan commented 7 years ago

reference 5346b4e59e668d3f60e327a608573d3c933c849f

dungphanxuan commented 7 years ago

Example: Creating an web Action


<?php

namespace app\controllers;

use yii\web\Controller;

class SiteController extends Controller
{
    // ...existing code...

    /*Action response as Html*/
    public function actionWeb()
    {
        $this->is_html = 1;
        return $this->render('web');
    }
}

result image

Usefull for write api for app