baha2odeh/yii2-precognition 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

baha2odeh/yii2-precognition

最新稳定版本:v0.001

Composer 安装命令:

composer require baha2odeh/yii2-precognition

包简介

Yii2 Precognition

README 文档

README

Yii2 Precognition

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist baha2odeh/yii2-precognition "*"

or add

"baha2odeh/yii2-precognition": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by:

add this trait to the ActiveRecord

class User extends ActiveRecord {

...
use \Baha2Odeh\Precognition\ValidateTrait;
...

You can also use this method with a custom model

$this->handlePrecognition();

This method stops request processing if there are no errors and the request is a 'precognition' request, meaning it's not an actual submission but a preliminary check.

class LoginForm extends Model {

...
use \Baha2Odeh\Precognition\ValidateTrait;
...

public function process(){
    ...
    if(!$this->validate()){
        return false;
    }
    $this->handlePrecognition();
    ...
}

Last step to change the restful response serializer to handle the 'precognition' requests

class UserController extends \yii\rest\ActiveController
{
    ...
    public $serializer = \Baha2Odeh\Precognition\Serializer::class;
    ...

in frontend side you have to add a new header in the axios requests to allow Yii to return 'precognition' response in case the submit was failed

import axios from 'axios'
import { client } from 'laravel-precognition-vue';

axios.interceptors.request.use(config => {
config.headers['precognition-on-submit'] = "true"
return config
})

client.use(axios)

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Apache-2.0
  • 更新时间: 2024-11-05

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固