Closed dungphanxuan closed 7 years ago
reference 5346b4e59e668d3f60e327a608573d3c933c849f
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
Usefull for write api for app
Api can response as text/html for webview