laravel使用ajax登录,和自定义生成验证码

使用larave框架操作ajax发送get请求,和自义定验证码

1. 后端登录代码
<?phpnamespace CriusWeb\FzUserAdmin\Http\Controllers;use App\Models\Admin;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Cache;class LoginController extends Controller
{/*** 登录界面*/public function login(){return view('fzuseradmin::login.index');}/*** 处理登录*/public function checkLogin(Request $request){$admin_name = trim($request->input('admin_name'));$admin_password = trim($request->input('admin_password'));$code = trim($request->input('code'));$captchaCode = $request->session()->get('fzUserAdminCaptcha');if ($code != $captchaCode) {return response()->json(['msg' => '验证码错误', 'code' => 400]);}$admin = Admin::where('admin_name', $admin_name)->first();if (!$admin) {return response()->json(['msg' => '账号不存在', 'code' => 400]);}if ($admin->admin_gid != 25) {return response()->json(['msg' => '此账号暂无权限', 'code' => 400]);}if (md5($admin_password) != $admin->admin_password) {return response()->json(['msg' => '密码错误', 'code' => 400]);}$array = array();$array['admin_name'] = $admin->admin_name;$array['admin_id'] = $admin->admin_id;$array['admin_login_time'] = time();$array['admin_gid'] = $admin->admin_gid;$request->session()->put('fzUserAdminInfo', $array);Admin::where('admin_id', $admin->admin_id)->update(['admin_login_time' => time(),'admin_login_num' => $admin->admin_login_num + 1,]);$request->session()->forget('fzUserAdminCaptcha');return response()->json(['msg' => '登录成功', 'code' => 200]);}/*** 图像验证码*/public function captcha(Request $request){session_start();header("Content-type: image/png");$width = 100; //宽度$height = 40; //高度$length = 4; //位数$code = '';for ($i = 0; $i < $length; $i++) {$code .= rand(0, 9);}//存验证码$request->session()->put('fzUserAdminCaptcha', $code);$image = imagecreatetruecolor($width, $height);$bgColor = imagecolorallocate($image, 255, 255, 255);imagefill($image, 0, 0, $bgColor);//打印验证码$font = 12;for ($i = 0; $i < $length; $i++) {$x = $width / ($length + 1) * ($i + 1) + rand(-5, 5);$y = $height / 2 - $font + rand(-5, 5);$color = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));imagestring($image, $font, $x, $y, $code[$i], $color);}//随机线条干扰8for ($i = 0; $i < 8; $i++) {$x1 = rand(0, $width);$y1 = rand(0, $height);$w2 = rand(0, $width);$h2 = rand(0, $height);$color = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));imageline($image, $x1, $y1, $w2, $h2, $color);}//随机噪点80for ($i = 0; $i < 80; $i++) {$x = rand(0, $width);$y = rand(0, $height);$color = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));imagesetpixel($image, $x, $y, $color);}//输出图片并销毁内存imagepng($image);imagedestroy($image);}/*** 退出登录*/public function logout(Request $request){$request->session()->forget('fzUserAdminInfo');return response()->json(['msg' => '退出登陆成功', 'code' => 200]);}}
2. 前端界面
<!DOCTYPE html>
<html>
<head><meta charset="utf-8"><meta name="csrf-token" content="{{ csrf_token() }}"><title></title><style>* {margin: 0;padding: 0;}.login-box {width: 100%;height: 100vh;background-image: url("{{fzuser_admin('/images/bg1.jpg')}}");background-size: cover;background-position: 50%;position: relative;}.login-box-content {width: 400px;position: absolute;top: 30%;right: 20%;background: #fff;border-radius: 10px;box-shadow: 0px 0px 20px #9AB6F6;padding-bottom: 20px;}.yzm {width: 100px;height: 38px;margin-top: 30px;margin-right: 15px;}.login-box-title {width: 100%;height: 60px;text-align: center;line-height: 60px;color: #000;font-size: 16px;border-bottom: 1px solid #f2f2f2;}.input-item {width: calc(100% - 30px);margin: 0 15px;margin-top: 30px;font-size: 16px;height: 40px;box-sizing: border-box;padding-left: 15px;border-radius: 5px;outline: none;border: 1px solid #9AB6F6;}.input-item2 {width: calc(100% - 150px);margin: 0 15px;margin-top: 30px;font-size: 16px;height: 40px;box-sizing: border-box;padding-left: 15px;border-radius: 5px;outline: none;border: 1px solid #9AB6F6;}.denglu-btn {width: calc(100% - 30px);margin: 0 15px;margin-top: 40px;height: 40px;background: #409eff;color: #fff;border: none;border-radius: 5px;cursor: pointer;}.login-bottom {width: 400px;position: absolute;right: 10%;top: calc(20% + 410px);line-height: 30px;font-size: 16px;color: #757575;}.jj-box {position: absolute;top: 8%;right: calc(10% + 600px);color: #333;font-weight: bold;font-size: 23px;}.login-bottom img {width: 50px;height: 50px;border-radius: 8px;}</style><script src="{{fzuser_admin('/js/jquery-3.1.1.min.js')}}"></script></head>
<body>
<div class="login-box"><div class="login-box-content"><div class="login-box-title">欢迎登录</div><input type="text" name="admin_name" id="admin_name" class="input-item" placeholder="请输入账号"><input type="password" name="admin_password" id="admin_password" class="input-item" placeholder="请输入密码"><div style="width:100%;display:flex;flex-direction: row;align-items: center;justify-content: space-between;"><input type="text" name="code" id="code" class="input-item2" placeholder="请输入图形验证码"><img src="{{lurl('/app/fzuser_admin/captcha')}}" alt="" id="yzmImg" class="yzm"onclick="this.src='{{lurl("/app/fzuser_admin/captcha")}}?'+Math.random()"></div><button class="denglu-btn" onclick="getLogin()">登录</button></div>
</div><script src="https://cdn.bootcdn.net/ajax/libs/layer/3.5.1/layer.js"></script>
<script>function getLogin() {var admin_name = $("#admin_name").val();var admin_password = $("#admin_password").val();var code = $("#code").val();if (!admin_name) {layer.msg('请输入账号');return false;}if (!admin_password) {layer.msg('请输入密码');return false;}if (!code) {layer.msg('请输入验证码');return false;}$.ajax({headers: {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')},url: '{{lurl('/app/fzuser_admin/checkLogin')}}',type: 'get',data: {"admin_name": admin_name,"admin_password": admin_password,"code": code},dataType: 'json',success: function (res) {if (res.code == 400) {layer.msg(res.msg);return false;} else {layer.msg(res.msg);window.location.href = "{{lurl('/app/fzuser_admin/')}}"}}})}
</script>
</body>
</html>

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/224437.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Idea】SpringBoot项目中,jar包引用冲突异常的排查 / SM2算法中使用bcprov-jdk15to18的报错冲突问题

问题描述以及解决方法&#xff1a; 项目中使用了bcprov-jdk15to18 pom依赖&#xff0c;但是发现代码中引入的版本不正确。 追溯代码发现版本引入的是bcprov-jdk15on&#xff0c;而不是bcprov-jdk15to18&#xff0c;但是我找了半天pom依赖也没有发现有引入bcprov-jdk15on依赖。…

MySQL常见死锁的发生场景以及如何解决

死锁的产生是因为满足了四个条件&#xff1a; 互斥占有且等待不可强占用循环等待 这个网站收集了很多死锁场景 接下来介绍几种常见的死锁发生场景。其中&#xff0c;id 为主键&#xff0c;no&#xff08;学号&#xff09;为二级唯一索引&#xff0c;name&#xff08;姓名&am…

Vue.js 使用基础知识

Vue.js 是一款用于构建用户界面的渐进式框架&#xff0c;它专注于视图层。Vue.js 不同于传统的 JavaScript 框架&#xff0c;它采用了组件化的开发方式&#xff0c;使得开发者可以更加高效和灵活地构建交互式的 Web 应用程序。 目录 什么是 Vue.js安装 Vue.jsVue 实例模板语法插…

bat 脚本的常用特殊符号

1、 命令行回显屏蔽符 2、% 批处理变量引导符 3、> 重定向符 4、>> 重定向符 5、<、>&、<& 重定向符 6、| 命令管道符 7、^ 转义字符 8、& 组合命令 9、&& 组合命令 10、|| 组合命令 11、"" 字符串界定符 12、, 逗号…

csp 如此编码 C语言(回归唠嗑版)

熟悉的开篇废话&#xff0c;最近其实在研究那个web开发这一块&#xff0c;导致csp联系就减少了&#xff0c;好久没更csp的帖子了&#xff0c;尽管明天就要考了&#xff0c;但是嘞&#xff0c;能看一道是一道呗对吧。 等过段时间我把web开发这一块整明白了就发帖子&#xff0c;…

数据库表1和表2对比出差异列 将表1的插入表2

SQLserver2019表1和表2对比出差异列&#xff0c;将表1的插入表2 写成存储过程&#xff0c;传的参为表名 两个表名一致&#xff0c;表结构可能不一致&#xff0c;可能一致&#xff0c;如何快速对比两个表&#xff0c;将需要的字段自动添加至需要的表中 字段大小是一致的吧 -- …

卷积神经网络(CNN)中感受野的计算问题

感受野 在卷积神经网络中&#xff0c;感受野&#xff08;Receptive Field&#xff09;的定义是卷积神经网络每一层输出的特征图&#xff08;feature map&#xff09;上每个像素点在原始图像上映射的区域大小&#xff0c;这里的原始图像是指网络的输入图像&#xff0c;是经过预处…

c++ 中多线程的相关概念与多线程类的使用

1、多线程相关概念 1.1 并发、并行、串行 并发&#xff08;Concurrent&#xff09;&#xff1a;并发是指两个或多个事件在同一时间间隔内运行。在操作系统中&#xff0c;是指一个时间段中有几个程序都处于已启动运行到运行完毕之间&#xff0c;且这几个程序都是在同一个处理机…

Visual Studio编辑器中C4996 ‘scanf‘: This function or variable may be unsafe.问题解决方案

目录 ​编辑 题目&#xff1a;简单的ab 1. 题目描述 2. 输入格式 3. 输出格式 4. 样例输入 5. 样例输出 6. 解题思路 7. 代码示例 8. 报错解决 方案一 方案二 方案三 方案四 总结 题目&#xff1a;简单的ab 1. 题目描述 输入两个整数a和b&#xff0c;…

ISP去噪(2)_np 噪声模型

#灵感# ISP 中的去噪&#xff0c;都需要依赖一个噪声模型。很多平台上使用采集的raw进行calibration&#xff0c;可以输出这个模型&#xff0c;通常称为 noise profile。 目录 名词解释&#xff1a; 标定方法&#xff1a; 校准出的noise profile: noise profile 作用域&am…

RabbitMQ插件详解:rabbitmq_web_stomp【RabbitMQ 六】

欢迎来到我的博客&#xff0c;代码的世界里&#xff0c;每一行都是一个故事 《RabbitMQ Web STOMP&#xff1a;打破界限的消息传递之舞》 前言STOMP协议简介STOMP&#xff08;Simple Text Oriented Messaging Protocol&#xff09;协议简介STOMP与WebSocket的关系 WebSocket和R…

C++模板进阶

文章目录 前言反向迭代器反向迭代器和正向迭代器的区别stl反向迭代器源码反向迭代器模拟实现测试 模板进阶非类型模板参数Array 模板的特化模板的分离编译 前言 模板进阶也没有到一些特别的东西&#xff0c;就是讲比较偏的一些特性。 在这里我们先来讲一下反向迭代器。 反向迭…

java.net.SocketException: Connection reset

背景 在我用socket进行TCP通信的时候&#xff0c;当我关闭client端时在服务端出现了Connection reset的异常。 一、问题 下面是异常信息&#xff1a; Exception in thread "Thread-12" java.lang.RuntimeException: java.net.SocketException: Connection reseta…

解决下载huggingface模型权重无法下载的问题

文章目录 方法一(推荐)方法二方法三依然存在的问题 由于某些原因&#xff0c;huggingface的访问速度奇慢无比&#xff0c;对于一些模型(比如大语言模型LLM)的权重文件动辄几十上百G&#xff0c;如果用默认下载方式&#xff0c;很可能中断&#xff0c;这里推荐几种方式。 方法一…

在React中使用动态图标

背景 需要按名称引入图标 安装 yarn add react-icons 实现 import loadable from "loadable/component" import { IconBaseProps, IconType } from "react-icons/lib"interface typesPropsIcon {nameIcon: string;propsIcon?: IconBaseProps }export f…

ShopsN commentUpload 文件上传漏洞复现

0x01 产品简介 ShopsN 是一款符合企业级商用标准全功能的真正允许免费商业用途的开源网店全网系统。 0x02 漏洞概述 ShopsN commentUpload 接口处存在任意文件上传漏洞,攻击者可以利用文件上传漏洞执行恶意代码、写入后门、读取敏感文件,从而可能导致服务器受到攻击并被控…

cat EOF快速创建一个文件,并写入内容

在linux系统中&#xff0c;如果你有这个需求 vi一个文件 /etc/docker/daemon.json 在这个文件中写入内容 { "registry-mirrors": ["https://iw3lcsa3.mirror.aliyuncs.com","http://10.1.8.151:8082"],"insecure-registries":[&quo…

SaaS 电商设计 (五) 私有化部署-实现 binlog 中间件适配

一、 背景 具体的中间件私有化背景在上文 SaaS 电商设计 (二) 私有化部署-缓存中间件适配 已有做相关介绍.这里具体讨论的场景是通过解析mysql binlog 来实现mysql到其他数据源的同步.具体比如:在电商的解决方案业务流中经常有 ES 的使用场景,用以解决一些复杂的查询和搜索商品…

C复习-typedef相关

参考&#xff1a;《C专家编程》 例子 void(*signal(int sig, void(*func)(int)))(int);分析&#xff1a;signal是一个函数&#xff0c;返回一个函数指针&#xff0c;它指向的函数接受int参数返回void。signal的参数是int和一个接受int的函数指针。 可以使用typedef进行简化&a…

Mybatis 拦截器实现 Like 通配符转义

Mybatis 拦截器实现 Like 通配符转义 mysql中like查询通配符问题描述 如果在MySQL中使用如下查询&#xff0c;将检索出全部数据 select * from t_user where name like %%%; select * from t_user where name like %_%; select * from t_user where name like concat(%,%,%)…