转自:http://yunkus.com/connect-flash-usage/

connect-flash 用法详解

 前端工具  2016-10-05  2016-10-05  朝夕熊  11

前言

说到 connect-flash ,估计也有很多朋友像我一样被它虐了好一阵子,很多朋友可能都会遇到过这个问题:Express4.x 中的 connect-flash 为什么不起作用?或者 connect-flash 怎么用?诸如此类的问题,在这里我就给大家戳破 connect-flash 的神秘面纱!

官方解释

The flash is a special area of the session used for storing messages. Messages are written to the flash and cleared after being displayed to the user. The flash is typically used in combination with redirects, ensuring that the message is available to the next page that is to be rendered.

大概的意思就是 flash 是 session 中一个用于存储信息的特殊区域。消息写入到 flash 中,在跳转目标页中显示该消息。flash 是配置 redirect 一同使用的,以确保消息在目标页面中可用。

flash 可用于一次性的消息提示,比如注册,登录页面,当你再次刷新时,flash就没有提示消息了。

connect-flash安装

工欲善其事,必先利其器,所以我们先来看看怎么安装 connect-flash。其实它的安装跟其它的模块安装是一样的,所以你很轻易的就可以把它安装好,切换到项目目录,运行如下命令行:

  1. $ npm install connect-flash

安装完之后,你还需要安装一个 express-session 模块,因为 connect-flash 是需要存储在 session 模块,运行如下命令行:

  1. $ npm install express-session
注意

安装connect-flash和express-session这两个模块时不要在命令行中添加-g(全局安装),因为安装到全局后,可以在你收入这两个模块时就会出现路径的问题,为了尽可能地减少繁琐的操作,我们直接安装到当前项目目录即可!

配置

配置 app.js 文件

安装完以上两个模块后,我们需要对相应的文件进行配置,打开app.js 添加如下代码:

  1. var settings = require('./settings'); //配置信息
  2. var flash = require('connect-flash');
  3. var session = require('express-session');
  4. app.use(session({
  5. secret: settings.cookieSecret, //加密
  6. key: settings.db, //cookie nam
  7. cookie: {maxAge: 60000},
  8. resave: false,
  9. saveUninitialized: true,
  10. }));
  11. app.use(flash());
  12. // set flash
  13. app.use(function (req, res, next) {
  14. res.locals.errors = req.flash('error');
  15. res.locals.infos = req.flash('info');
  16. next();
  17. });

代码中的settings.cookieSecretsettings.db是两个变量,它们的值已经事先写到了一个settings.js文件里了。

  1. module.exports = {
  2. cookieSecret: 'orders',
  3. db: 'ordersdb',
  4. host: 'localhost',
  5. port: 27017
  6. }

如果你觉得麻烦,你可以不使用变量的方式,直接给 secret ,key 写值。

如何使用

  1. // 登录
  2. router.get('/login', function(req, res, next) {
  3. res.render('login', { title: '欢迎登录' });
  4. });
  5. router.post('/login', function(req, res, next) {
  6. User.get(req.body.username,function(err,user){
  7. if(!user || user.name === ''){
  8. req.flash('error','用户不存在');
  9. return res.redirect('login');
  10. }
  11. if(req.body.password != user.password){
  12. req.flash('error','密码不对');
  13. return res.redirect('login');
  14. }
  15. req.flash('info','登录成功');
  16. res.redirect('login');
  17. })
  18. });

上面我以登录的路由代码作为例子,一看就懂,只需要在要显示信息的地方添加形如:req.flash('error','用户不存在');的代码就可以了。那怎么才能在页面中调用这些提示信息呢?我们接着往下看。下面是一个简单的调用例子,但也足以把问题说明白了。

  1. <div class="wrap">
  2. <div class="wrap-left">
  3. <ul>
  4. <li><a href="/">主页</a></li>
  5. <li><a href="/login">登录</a></li>
  6. <li><a href="/reg">注册</a></li>
  7. </ul>
  8. </div>
  9. <div class="wrap-right">
  10. <h1><%= title %></h1>
  11. <div class="wrap-content">
  12. <form method="post">
  13. <ul>
  14. <li>用户名:<input type="text" name="username"></li>
  15. <li>密码:<input type="text" name="password"></li>
  16. <li><button>登录</button></li>
  17. <li><%= errors %></li>
  18. </ul>
  19. </form>
  20. </div>
  21. </div>
  22. </div>

代码中的<%= errors %>就是调用相应的信息的方法,为什么要这样写呢?为什么里面的一个 errors,而不是 我们在 index.js 中写的req.flash('error','用户不存在');中的 error 变量呢?这个你看看我们一开始在 app.js 中的配置代码你就明白了。我们已经把req.flash('error');的提示信息赋值给了res.locals.errors,而我们如果要调用locals 中的 errors 变量,不需要写成locals.errors,而是直接写变量名 errors 就可以了。

conncet-flash 模块的用法就给大家分享到这里了,这里只给你一个实现的思路,并不会给你一个面包,但你可以通过这个思路做一个美味的面包。人人都讨厌伸手党,总想着天上掉面包,不如自己去做面包,人必自救,而后人救之。

68.connect-flash 用法详解 req,flash()的更多相关文章

  1. Oracle层级询语句connect by 用法详解

    如果表中包含层级数据,那么你就可以使用层级查询从句选择行层级顺序. 1.层级查询从句语法 层级查询从句语法: { CONNECT BY [ NOCYCLE ] condition [AND condi ...

  2. CSS3的@keyframes用法详解:

    CSS3的@keyframes用法详解:此属性与animation属性是密切相关的,关于animation属性可以参阅CSS3的animation属性用法详解一章节. 一.基本知识:keyframes ...

  3. oracle expdp/impdp 用法详解

    http://hi.baidu.com/hzfsai/item/4a4b3fc4b1cf7e51ad00efbd oracle expdp/impdp 用法详解 Data Pump 反映了整个导出/导 ...

  4. (转)linux traceroute命令参数及用法详解--linux跟踪路由命令

    linux traceroute命令参数及用法详解--linux跟踪路由命令 原文:http://blog.csdn.net/liyuan_669/article/details/25362505 通 ...

  5. [转帖]强大的strace命令用法详解

    强大的strace命令用法详解 文章转自: https://www.linuxidc.com/Linux/2018-01/150654.htm strace是什么? 按照strace官网的描述, st ...

  6. C#中string.format用法详解

    C#中string.format用法详解 本文实例总结了C#中string.format用法.分享给大家供大家参考.具体分析如下: String.Format 方法的几种定义: String.Form ...

  7. @RequestMapping 用法详解之地址映射

    @RequestMapping 用法详解之地址映射 引言: 前段时间项目中用到了RESTful模式来开发程序,但是当用POST.PUT模式提交数据时,发现服务器端接受不到提交的数据(服务器端参数绑定没 ...

  8. linux管道命令grep命令参数及用法详解---附使用案例|grep

    功能说明:查找文件里符合条件的字符串. 语 法:grep [-abcEFGhHilLnqrsvVwxy][-A<显示列数>][-B<显示列数>][-C<显示列数>] ...

  9. mysql中event的用法详解

    一.基本概念mysql5.1版本开始引进event概念.event既“时间触发器”,与triggers的事件触发不同,event类似与linux crontab计划任务,用于时间触发.通过单独或调用存 ...

随机推荐

  1. hdu1978 How many ways

    How many ways Problem Description 这是一个简单的生存游戏,你控制一个机器人从一个棋盘的起始点(1,1)走到棋盘的终点(n,m).游戏的规则描述如下: 机器人一开始在棋 ...

  2. Codeforces 667C Reberland Linguistics 记忆化搜索

    链接 Codeforces 667C Reberland Linguistics 题意 给你一个字符串,除去前5个字符串后,使剩下的串有长度为2或3的词根组成,相邻的词根不能重复.找到所有的词根 思路 ...

  3. Asp.Net中使用水晶报表(中)

    Asp.Net中使用水晶报表(中) 使用Pull模式 我们将通过下面的这些步骤来通过Pull模式来执行水晶报表 1.首先创建rpt文件,并使用水晶报表设计接口设置一些必须的数据连接. 2.拖放一个 C ...

  4. javascript 优秀写法

    http://www.csdn.net/article/2014-01-06/2818025-Useful-JavaScript-Tips-Best-Practices

  5. CentOS 7.4 安装 网易云音乐

    CentOS 7.4 安装 网易云音乐 本文包含: 安装dnf 编译gcc 5.4.0 安装各种包 安装网易云音乐贯穿全局; 安装环境: CentOS 7.4, kernel3.10.0, gcc4. ...

  6. linux上编译好的php添加memcache扩展

            cd /usr/local/src/ src>wget http://memcached.org/files/memcached-1.4.35.tar.gz src>tar ...

  7. PostgreSQL指定用户可访问的数据库pg_hba.conf

    进入指定目录: # cd /var/lib/pgsql/9.3/data/ 使用vi编辑pg_hba.conf文件 # vi pg_hba.conf 以上配置为所有IP及网关都允许访问,使用MD5认证 ...

  8. 监控memcached服务

    #!/bin/bash #监控memcached服务 printf "del key\r\n" | nc 127.0.0.1 11211 &>/dev/null #使 ...

  9. 紫书 例题 10-18 UVa 11346(连续概率)

    就是面积计算,没什么好说的. #include<cstdio> #include<cmath> #define REP(i, a, b) for(int i = (a); i ...

  10. thinkphp5项目--企业单车网站(一)

    thinkphp5项目--企业单车网站(一) 项目地址 fry404006308/BicycleEnterpriseWebsite: Bicycle Enterprise Websitehttps:/ ...