Home > Web Front-end > JS Tutorial > body text

node implements the image verification code function when logging in

php中世界最好的语言
Release: 2018-04-27 15:56:53
Original
2729 people have browsed it

This time I will bring you the function of node to realize the picture when logging in Verification code. What are the precautions for node to realize the function of picture verification code when logging in. The following is a practical case. Get up and take a look.

To implement the graphical verification code here, I use the svg-captcha module in node, which can support all characters and numbers. It is supported by all platforms and is very simple to use.

1. Install

cnpm i svg-captcha --save
Copy after login

2. Import

var svgCaptcha = require('svg-captcha');
Copy after login

3. Get the verification code

3-1 Install cookie-parser, which is used to save the obtained session to cookies to facilitate front-end access verification

cnpm i cookie-parser --save

3-2 Use cookie-parser

const cookieParase = require('cookie-parser');
app.use(cookieParase());
Copy after login

This way you can use cookies in the project

3-3 Get the verification code

// 获取验证码
 getCaptcha(req, res, next){
  var captcha = svgCaptcha.create({ 
   // 翻转颜色 
   inverse: false, 
   // 字体大小 
   fontSize: 36, 
   // 噪声线条数 
   noise: 2, 
   // 宽度 
   width: 80, 
   // 高度 
   height: 30, 
  }); 
  // 保存到session,忽略大小写 
  req.session = captcha.text.toLowerCase(); 
  console.log(req.session); //0xtg 生成的验证码
  //保存到cookie 方便前端调用验证
  res.cookie('captcha', req.session); 
  res.setHeader('Content-Type', 'image/svg+xml');
  res.write(String(captcha.data));
  res.end();
 },
Copy after login

This only implements the function of generating the verification code, so what about access?

4. Write background routing

// 获取验证码
router.get('/api/getCaptcha', function(req, res, next) {
 return api.getCaptcha(req, res, next);
})
Copy after login

When the front end calls this interface /api/getCaptcha, the verification code information is returned, which is in svg format

5. Front-end access

<img src="/api/getCaptcha" alt="captcha" >
Copy after login

But now we have needs again. When this verification code is clicked, the verification code It will be refreshed

6. Click the verification code to refresh

Change the result of the verification code just now, add an outer a label to it, and bind it to Click event, I used vue here, so it is @click, the same is true for other frameworks.

<a href="#" rel="external nofollow" @click="editCaptcha">
  <img src="/api/getCaptcha" alt="" ref="imgYzm">
</a>
Copy after login

Click eventeditCaptcha

editCaptcha () {
  this.$refs.imgYzm.src = '/api/getCaptcha?d='+Math.random()
},
Copy after login

This realizes the problem of clicking the verification code to refresh

7. Front-end verification verification code

We just got the verification code in the background, but the front-end needs How to verify?

Remember that we installed cookie-parser in 3-2, and saved the generated session in a cookie in 3-3. Here our front-end can access this cookie Got the value of the verification code.

Why should it be stored in cookies? Because the session generated by the backend cannot be accessed by the frontend, if we wait to access it, there is no security at all, so we save a copy in a cookie for frontend access.

let captcha = document.cookie.split('=')[1]
  if(this.yzm != captcha){
   return this.$message.warning('验证码错误')
  }
Copy after login

I won’t go into details about the final front-end input of account and password verification code for login verification, etc. The specific idea is this.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Vue implements two-way data binding function (with code)

ES6 imitates Vue to implement two-way binding Defined function

The above is the detailed content of node implements the image verification code function when logging in. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!