定制 loveorigami/yii2-ajaxq 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

loveorigami/yii2-ajaxq

最新稳定版本:1.0

Composer 安装命令:

composer require loveorigami/yii2-ajaxq

包简介

Customizable ajaxq widget for Yii2

README 文档

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

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-30