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
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2024-11-05