express
大青虫
我非常喜欢早睡,比如早上五点多
展开
-
node ,express使用插件svg-captcha生成svg图片验证码 ,以及前端的显示
npm install --save svg-captcha1.安装 svg-captcha (文档传送门)2.引入svg验证码varsvgCaptcha=require('svg-captcha');3.生成svg-capcha二维码letrandomcode=""//真实验证码exports.getCode=(req,res)=>{constcaptcha=svgCaptcha.create({//下面是对二维...原创 2020-09-25 08:59:34 · 1284 阅读 · 0 评论 -
node(express)没看懂的 sql 语句语法
1.插入数据:2.登入查询:3.更新数据原创 2020-08-14 08:24:45 · 671 阅读 · 0 评论 -
express请求参数的所有方式 (我所知道的 ,欢迎补充)
node(express)获取参数的所有方式 , 望各位用轮子用的舒服原创 2020-08-13 22:09:50 · 441 阅读 · 0 评论 -
express 设置了跨域不起作用 解决
跨域报错 :No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3022' is therefore not allowed access.按照网上方法 :在入口文件中添加了以下代码// 解决跨域问题// app.all('*', function(req, response, next) {// //设置允...原创 2020-07-18 09:50:16 · 2573 阅读 · 1 评论