loveorigami / yii2-ajaxq
Customizable ajaxq widget for Yii2
Package info
github.com/loveorigami/yii2-ajaxq
Type:yii2-extension
pkg:composer/loveorigami/yii2-ajaxq
1.0
2015-07-02 09:03 UTC
Requires
- bower-asset/ajaxq: ~0.0.2
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2026-02-21 23:29:19 UTC
README
A customizable AjaxQ jQuery plugin for Yii2 based on Ajaxq.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require "loveorigami/yii2-ajaxq" "*"
or add
"loveorigami/yii2-ajaxq" : "*"
to the require section of your application's composer.json file.
Usage
- In view:
use lo\widgets\Ajaxq; <?php echo Ajaxq::widget([ 'url' => '/site/demo', // 'success' =>'$(".res").html(res)', // 'tpl' => 'from_to' // default view for generating ajax requests ]);
- In controller:
/** * Controller name - Site * Demo for ajaxq request * @return json */ public function actionDemo() { $post = \Yii::$app->request->post('dataq'); // get associative array dataq \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; $data['id'] = $post['id']; $data['mes'] = $post['id'].' - It is ok!'; $res = print_r($data, true); echo json_encode($res); }