cakedone/cakephp-api-flash
Composer 安装命令:
composer require cakedone/cakephp-api-flash
包简介
CakePHP 3 plugin that adds any flash message to the response.
README 文档
README
This plugin consists of only a component to be used in your controllers in order to set flash message in the serialized response.
Usage
Load the component in the desired controller:
# the initialize method $this->loadComponent('ApiFlash');
Then just call the ApiFlashComponent#set(key, message) method from any controller method:
$this->ApiFlash->set('success', 'You were successfully authenticated!')
It will simply add an array to the flash key in the response body:
[ 'flash' => [ 'success' => 'You were successfully authenticated!' ] ]
Config
You can configure the key which the array will be set in the response. Simply add a key index to the config of loadComponent call:
# the intialize method $this->loadComponent('ApiFlash', ['key' => 'feedback']);
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: UNLICENSE
- 更新时间: 2015-10-16