1.0.1 • Published 6 years ago
egg-msg-flash-yongqi v1.0.1
egg-msg-flash
Install
$ npm i egg-msg-flash --saveUsage
// {app_root}/config/plugin.js
exports.flash = {
enable: true,
package: 'egg-msg-flash',
};Configuration
// {app_root}/config/config.default.js
exports.flash = {
};see config/config.default.js for more detail.
Example
ctx.flash = {
type: 'sueeess',
message: {
some: 'one'
}
}
// or
ctx.flash_success({ some: 'one' })
ctx.flash_error()
ctx.flash_info()
ctx.flash_warning()
ctx.request.flash(type, message)
// get flash by
ctx.flashQuestions & Suggestions
Please open an issue here.