day08-注册功能、前端登录注册页面复制、前端登录功能、前端注册功能

1 注册功能
补充(开放文件夹内)
2 前端登录注册页面复制
4 前端注册功能

1 注册功能

# 分析前端:携带数据格式 {mobile:,code:,password}后端:-1 视图类---》注册方法-2 序列化类---》校验,保存(表中字段多,传的少---》随机,按某种格式生成---》后期修改)

视图类

class UserRegisterView(GenericViewSet, CreateModelMixin):serializer_class = UserRegisterSerializer# @action(methods=['POST'], detail=False)# def register(self, request, *args, **kwargs):#     ser = self.get_serializer(data=request.data)#     ser.is_valid(raise_exception=True)#     ser.save()#     return APIResponse(msg='恭喜您注册成功')# 或者改为@action(methods=['POST'], detail=False)def register(self, request, *args, **kwargs):# 如果是这样做的话,内部执行serializer.data---->会走序列化----》# 基于create返回的user做序列化-----》按照fields = ['mobile', 'code', 'password']做序列化# 但是code不是表中的字段,就会报错,这个时候需要在序列化类中将其反序列化# 即:code = serializers.CharField(max_length=4, min_length=4, write_only=True)res = super().create(request, *args, **kwargs)return APIResponse(msg='恭喜注册成功')

序列化类

class UserRegisterSerializer(serializers.ModelSerializer):# code 不是表中字段code = serializers.CharField(max_length=4, min_length=4, write_only=True)class Meta:model = Userfields = ['mobile', 'code', 'password']def validate(self, attrs):# 1 校验验证码是否正确mobile = attrs.get('mobile')code = attrs.get('code')old_code = cache.get('cache_mobile_%s' % mobile)if code == old_code or code == '8888':  # 测试阶段,万能验证码# 2 组装数据 :username必填,但是没有,code不是表的字段attrs['username'] = mobileattrs.pop('code')# 3 返回return attrsdef create(self, validated_data):  # 密码是加密的,如果重写,密码是明文的  validated_data=mobile,password,usernameuser = User.objects.create_user(**validated_data)return user

补充(开放文件夹内)

#1 为什么要写这个media才能访问-django 默认是不允许前端直接访问项目某个文件夹的-有个static文件夹例外,需要额外配置-如果想让用户访问,必须配置路由,使用serve函数放开path('media/<path:path>', serve, {'document_root': settings.MEDIA_ROOT})-浏览器中访问 meida/icon/1.png--->能把settings.MEDIA_ROOT对应的文件夹下的icon/1.png返回给前端path('lqz/<path:path>', serve, {'document_root':os.path.join(BASE_DIR, 'lqz')})浏览器中访问 lqz/a.txt----->能把项目根路径下lqz对应的文件夹下的a.txt返回给前端# 2 配置文件中 debug作用-开发阶段,都是debug为True,信息显示更丰富-你访问的路由如果不存在,会把所有能访问到的路由都显示出来-程序出了异常,错误信息直接显示在浏览器上-自动重启,只要改了代码,会自动重启-上线阶段,肯定要改成False#3  ALLOWED_HOSTS 的作用-只有debug 为Flase时,这个必须填-限制后端项目(django项目 )能够部署在哪个ip的机器上,写个 *  表示所有地址都可以#4 咱们的项目中,为了知道是在调试模式还是在上线模式,所以才用的debug这个字段-判断,如果是开发阶段,可以有个万能验证码# 5 短信登录或注册接口-app 只需要输入手机号和验证码,如果账号不存在,直接注册成功,并且登录成功,如果账号存在,就是登录-前端传入:{mobiel,code}--->验证验证码是否正确---》拿着mobile去数据库查询,如果能查到,说明它注册过了,直接签发token返回----》如果查不到,没有注册过---》走注册逻辑完成注册---》再签发token,返回给前端-这个接口,随机生成一个6位密码,以短信形式通知用户-这个接口,密码为空,下次他用账号密码登录,不允许登录-后续改密码:user.set_password(new_password)

2 前端登录注册页面测试

登录,注册,都写成组件----》在任意页面中,都能点击显示登录模态框
写好的组件,应该放在那个组件中----》不是页面组件(小组件)
点击登录按钮,把Login.vue 通过定位,占满全屏,透明度设为 0.5 ,纯黑色悲剧,覆盖在组件上
在Login.vue点关闭,要把Login.vue隐藏起来,父子通信之子传父,自定义事件

2.1 Header.vue


<template><div class="header"><div class="slogan"><p>老男孩IT教育 | 帮助有志向的年轻人通过努力学习获得体面的工作和生活</p></div><div class="nav"><ul class="left-part"><li class="logo"><router-link to="/"><img src="../assets/img/head-logo.svg" alt=""></router-link></li><li class="ele"><span @click="goPage('/free-course')" :class="{active: url_path === '/free-course'}">免费课</span></li><li class="ele"><span @click="goPage('/actual-course')" :class="{active: url_path === '/actual-course'}">实战课</span></li><li class="ele"><span @click="goPage('/light-course')" :class="{active: url_path === '/light-course'}">轻课</span></li></ul><div class="right-part"><div><span @click="handleLogin" >登录</span><span class="line">|</span><span>注册</span></div></div><Login v-if="loginShow" @close="handleClose"></Login></div></div></template><script>
import Login from "@/components/Login";export default {name: "Header",data() {return {url_path: sessionStorage.url_path || '/',loginShow: false,}},methods: {goPage(url_path) {// 已经是当前路由就没有必要重新跳转if (this.url_path !== url_path) {this.$router.push(url_path);}sessionStorage.url_path = url_path;},handleLogin(){this.loginShow = true},handleClose(){this.loginShow = false}},created() {sessionStorage.url_path = this.$route.path;this.url_path = this.$route.path;},components: {Login}
}
</script><style scoped>
.header {background-color: white;box-shadow: 0 0 5px 0 #aaa;
}.header:after {content: "";display: block;clear: both;
}.slogan {background-color: #eee;height: 40px;
}.slogan p {width: 1200px;margin: 0 auto;color: #aaa;font-size: 13px;line-height: 40px;
}.nav {background-color: white;user-select: none;width: 1200px;margin: 0 auto;}.nav ul {padding: 15px 0;float: left;
}.nav ul:after {clear: both;content: '';display: block;
}.nav ul li {float: left;
}.logo {margin-right: 20px;
}.ele {margin: 0 20px;
}.ele span {display: block;font: 15px/36px '微软雅黑';border-bottom: 2px solid transparent;cursor: pointer;
}.ele span:hover {border-bottom-color: orange;
}.ele span.active {color: orange;border-bottom-color: orange;
}.right-part {float: right;
}.right-part .line {margin: 0 10px;
}.right-part span {line-height: 68px;cursor: pointer;
}
</style>

2.2 Login.vue

<template><div class="login"><span @click="close">X</span></div>
</template><script>
export default {name: "Login",methods: {close() {this.$emit('close_login')}}}
</script><style scoped>
.login {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 10;background-color: rgba(0, 0, 0, 0.5);
}
</style>

3 前端登录功能

<template><div class="login"><div class="box"><i class="el-icon-close" @click="close_login"></i><div class="content"><div class="nav"><span :class="{active: login_method === 'is_pwd'}" @click="change_login_method('is_pwd')">密码登录</span><span :class="{active: login_method === 'is_sms'}" @click="change_login_method('is_sms')">短信登录</span></div><el-form v-if="login_method === 'is_pwd'"><el-inputplaceholder="用户名/手机号/邮箱"prefix-icon="el-icon-user"v-model="username"clearable></el-input><el-inputplaceholder="密码"prefix-icon="el-icon-key"v-model="password"clearableshow-password></el-input><el-button type="primary" @click="login">登录</el-button></el-form><el-form v-if="login_method === 'is_sms'"><el-inputplaceholder="手机号"prefix-icon="el-icon-phone-outline"v-model="mobile"clearable@blur="check_mobile"></el-input><el-inputplaceholder="验证码"prefix-icon="el-icon-chat-line-round"v-model="sms"clearable><template slot="append"><span class="sms" @click="send_sms">{{ sms_interval }}</span></template></el-input><el-button @click="mobile_login" type="primary">登录</el-button></el-form><div class="foot"><span @click="go_register">立即注册</span></div></div></div></div>
</template><script>
export default {name: "Login",data() {return {username: '',password: '',mobile: '',sms: '',  // 验证码login_method: 'is_pwd',sms_interval: '获取验证码',is_send: false,}},methods: {close_login() {this.$emit('close')},go_register() {this.$emit('go')},change_login_method(method) {this.login_method = method;},check_mobile() {if (!this.mobile) return;// js正则:/正则语法/// '字符串'.match(/正则语法/)if (!this.mobile.match(/^1[3-9][0-9]{9}$/)) {this.$message({message: '手机号有误',type: 'warning',duration: 1000,onClose: () => {this.mobile = '';}});return false;}// 后台校验手机号是否已存在this.$axios({url: this.$settings.BASE_URL + 'user/mobile/check_mobile/?mobile=' + this.mobile,method: 'get',}).then(response => {if (response.data.code == 100) {this.$message({message: '账号正常,可以发送短信',type: 'success',duration: 1000,});// 发生验证码按钮才可以被点击this.is_send = true;} else {this.$message({message: '账号不存在',type: 'warning',duration: 1000,onClose: () => {this.mobile = '';}})}}).catch(() => {});},send_sms() {// this.is_send必须允许发生验证码,才可以往下执行逻辑if (!this.is_send) return;// 按钮点一次立即禁用this.is_send = false;let sms_interval_time = 60;this.sms_interval = "发送中...";// 定时器: setInterval(fn, time, args)// 往后台发送验证码this.$axios({url: this.$settings.BASE_URL + 'user/mobile/send_sms/',method: 'post',data: {mobile: this.mobile}}).then(response => {if (response.data.code == 100) { // 发送成功let timer = setInterval(() => {if (sms_interval_time <= 1) {clearInterval(timer);this.sms_interval = "获取验证码";this.is_send = true; // 重新回复点击发送功能的条件} else {sms_interval_time -= 1;this.sms_interval = `${sms_interval_time}秒后再发`;}}, 1000);} else {  // 发送失败this.sms_interval = "重新获取";this.is_send = true;this.$message({message: '短信发送失败',type: 'warning',duration: 3000});}}).catch(() => {this.sms_interval = "频率过快";this.is_send = true;})},login() {if (!(this.username && this.password)) {this.$message({message: '请填好账号密码',type: 'warning',duration: 1500});return false  // 直接结束逻辑}this.$axios({url: this.$settings.BASE_URL + 'user/login/mul_login/',method: 'post',data: {username: this.username,password: this.password,}}).then(response => {let username = response.data.username;let token = response.data.token;this.$cookies.set('username', username, '7d');this.$cookies.set('token', token, '7d');this.$emit('success', response.data);}).catch(error => {console.log(error.response.data)})},mobile_login() {if (!(this.mobile && this.sms)) {this.$message({message: '请填好手机与验证码',type: 'warning',duration: 1500});return false  // 直接结束逻辑}this.$axios({url: this.$settings.BASE_URL + 'user/login/sms_login/',method: 'post',data: {mobile: this.mobile,code: this.sms,}}).then(response => {if (response.data.code == 100) {let username = response.data.username;let token = response.data.token;this.$cookies.set('username', username, '7d');this.$cookies.set('token', token, '7d');this.$emit('success', response.data);} else {this.$message({message: '登录失败',type: 'warning',duration: 1500});}}).catch(error => {console.log(error.response.data)})}}
}
</script><style scoped>
.login {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 10;background-color: rgba(0, 0, 0, 0.5);
}.box {width: 400px;height: 420px;background-color: white;border-radius: 10px;position: relative;top: calc(50vh - 210px);left: calc(50vw - 200px);
}.el-icon-close {position: absolute;font-weight: bold;font-size: 20px;top: 10px;right: 10px;cursor: pointer;
}.el-icon-close:hover {color: darkred;
}.content {position: absolute;top: 40px;width: 280px;left: 60px;
}.nav {font-size: 20px;height: 38px;border-bottom: 2px solid darkgrey;
}.nav > span {margin: 0 20px 0 35px;color: darkgrey;user-select: none;cursor: pointer;padding-bottom: 10px;border-bottom: 2px solid darkgrey;
}.nav > span.active {color: black;border-bottom: 3px solid black;padding-bottom: 9px;
}.el-input, .el-button {margin-top: 40px;
}.el-button {width: 100%;font-size: 18px;
}.foot > span {float: right;margin-top: 20px;color: orange;cursor: pointer;
}.sms {color: orange;cursor: pointer;display: inline-block;width: 70px;text-align: center;user-select: none;
}
</style>

4 前端注册功能

<template><div class="register"><div class="box"><i class="el-icon-close" @click="close_register"></i><div class="content"><div class="nav"><span class="active">新用户注册</span></div><el-form><el-inputplaceholder="手机号"prefix-icon="el-icon-phone-outline"v-model="mobile"clearable@blur="check_mobile"></el-input><el-inputplaceholder="密码"prefix-icon="el-icon-key"v-model="password"clearableshow-password></el-input><el-inputplaceholder="验证码"prefix-icon="el-icon-chat-line-round"v-model="sms"clearable><template slot="append"><span class="sms" @click="send_sms">{{ sms_interval }}</span></template></el-input><el-button @click="register" type="primary">注册</el-button></el-form><div class="foot"><span @click="go_login">立即登录</span></div></div></div></div>
</template><script>
export default {name: "Register",data() {return {mobile: '',password: '',sms: '',sms_interval: '获取验证码',is_send: false,}},methods: {close_register() {this.$emit('close', false)},go_login() {this.$emit('go')},check_mobile() {if (!this.mobile) return;// js正则:/正则语法/// '字符串'.match(/正则语法/)if (!this.mobile.match(/^1[3-9][0-9]{9}$/)) {this.$message({message: '手机号有误',type: 'warning',duration: 1000,onClose: () => {this.mobile = '';}});return false;}// 后台校验手机号是否已存在this.$axios({url: this.$settings.BASE_URL + 'user/mobile/check_mobile/?mobile='+this.mobile,method: 'get',}).then(response => {if (response.data.code!=100) {this.$message({message: '欢迎注册我们的平台',type: 'success',duration: 1500,});// 发生验证码按钮才可以被点击this.is_send = true;} else {this.$message({message: '账号已存在,请直接登录',type: 'warning',duration: 1500,})}}).catch(() => {});},send_sms() {// this.is_send必须允许发生验证码,才可以往下执行逻辑if (!this.is_send) return;// 按钮点一次立即禁用this.is_send = false;let sms_interval_time = 60;this.sms_interval = "发送中...";// 定时器: setInterval(fn, time, args)// 往后台发送验证码this.$axios({url: this.$settings.BASE_URL + 'user/mobile/send_sms/',method: 'post',data: {mobile: this.mobile}}).then(response => {if (response.data.code==100) { // 发送成功let timer = setInterval(() => {if (sms_interval_time <= 1) {clearInterval(timer);this.sms_interval = "获取验证码";this.is_send = true; // 重新回复点击发送功能的条件} else {sms_interval_time -= 1;this.sms_interval = `${sms_interval_time}秒后再发`;}}, 1000);} else {  // 发送失败this.sms_interval = "重新获取";this.is_send = true;this.$message({message: '短信发送失败',type: 'warning',duration: 3000});}}).catch(() => {this.sms_interval = "频率过快";this.is_send = true;})},register() {if (!(this.mobile && this.sms && this.password)) {this.$message({message: '请填好手机、密码与验证码',type: 'warning',duration: 1500});return false  // 直接结束逻辑}this.$axios({url: this.$settings.BASE_URL + 'user/register/register/',method: 'post',data: {mobile: this.mobile,code: this.sms,password: this.password}}).then(response => {this.$message({message: '注册成功,3秒跳转登录页面',type: 'success',duration: 3000,showClose: true,onClose: () => {// 去向成功页面this.$emit('success')}});}).catch(error => {this.$message({message: '注册失败,请重新注册',type: 'warning',duration: 1500,showClose: true,onClose: () => {// 清空所有输入框this.mobile = '';this.password = '';this.sms = '';}});})}}
}
</script><style scoped>
.register {width: 100vw;height: 100vh;position: fixed;top: 0;left: 0;z-index: 10;background-color: rgba(0, 0, 0, 0.3);
}.box {width: 400px;height: 480px;background-color: white;border-radius: 10px;position: relative;top: calc(50vh - 240px);left: calc(50vw - 200px);
}.el-icon-close {position: absolute;font-weight: bold;font-size: 20px;top: 10px;right: 10px;cursor: pointer;
}.el-icon-close:hover {color: darkred;
}.content {position: absolute;top: 40px;width: 280px;left: 60px;
}.nav {font-size: 20px;height: 38px;border-bottom: 2px solid darkgrey;
}.nav > span {margin-left: 90px;color: darkgrey;user-select: none;cursor: pointer;padding-bottom: 10px;border-bottom: 2px solid darkgrey;
}.nav > span.active {color: black;border-bottom: 3px solid black;padding-bottom: 9px;
}.el-input, .el-button {margin-top: 40px;
}.el-button {width: 100%;font-size: 18px;
}.foot > span {float: right;margin-top: 20px;color: orange;cursor: pointer;
}.sms {color: orange;cursor: pointer;display: inline-block;width: 70px;text-align: center;user-select: none;
}
</style>

Header.vue

<template><div class="header"><div class="slogan"><p>老男孩IT教育 | 帮助有志向的年轻人通过努力学习获得体面的工作和生活</p></div><div class="nav"><ul class="left-part"><li class="logo"><router-link to="/"><img src="../assets/img/head-logo.svg" alt=""></router-link></li><li class="ele"><span @click="goPage('/free-course')" :class="{active: url_path === '/free-course'}">免费课</span></li><li class="ele"><span @click="goPage('/actual-course')" :class="{active: url_path === '/actual-course'}">实战课</span></li><li class="ele"><span @click="goPage('/light-course')" :class="{active: url_path === '/light-course'}">轻课</span></li></ul><div class="right-part"><div v-if="!username"><span @click="handleLogin">登录</span><span class="line">|</span><span @click="handleRegister">注册</span></div><div v-else><span>{{ username }}</span><span class="line">|</span><span @click="logOut">注销</span></div></div><Login v-if="loginShow" @close="handleClose" @success="success_login" @go="go_register"></Login><Register v-if="registerShow" @close="handleRegisterClose" @success="success_register"@go="success_register"></Register></div></div></template>
<script>
import Login from "@/components/Login.vue";
import Register from "@/components/Register.vue";export default {name: "Header",data() {return {url_path: sessionStorage.url_path || '/',loginShow: false,registerShow: false,username: '',token: ''}},methods: {handleRegister() {this.registerShow = true},handleRegisterClose() {this.registerShow = false},success_register() {this.registerShow = falsethis.loginShow = true},go_register() {this.registerShow = truethis.loginShow = false},logOut() {this.username = ''this.token = ''this.$cookies.remove('username')this.$cookies.remove('token')},goPage(url_path) {// 已经是当前路由就没有必要重新跳转if (this.url_path !== url_path) {this.$router.push(url_path);}sessionStorage.url_path = url_path;},handleLogin() {this.loginShow = true},handleClose() {this.loginShow = false},success_login(data) {this.loginShow = false;  // 模态框消耗this.username = data.username;this.token = data.token;}},created() {sessionStorage.url_path = this.$route.path;this.url_path = this.$route.path;this.username = this.$cookies.get('username')},components: {Register,Login}
}
</script><style scoped>
.header {background-color: white;box-shadow: 0 0 5px 0 #aaa;
}.header:after {content: "";display: block;clear: both;
}.slogan {background-color: #eee;height: 40px;
}.slogan p {width: 1200px;margin: 0 auto;color: #aaa;font-size: 13px;line-height: 40px;
}.nav {background-color: white;user-select: none;width: 1200px;margin: 0 auto;}.nav ul {padding: 15px 0;float: left;
}.nav ul:after {clear: both;content: '';display: block;
}.nav ul li {float: left;
}.logo {margin-right: 20px;
}.ele {margin: 0 20px;
}.ele span {display: block;font: 15px/36px '微软雅黑';border-bottom: 2px solid transparent;cursor: pointer;
}.ele span:hover {border-bottom-color: orange;
}.ele span.active {color: orange;border-bottom-color: orange;
}.right-part {float: right;
}.right-part .line {margin: 0 10px;
}.right-part span {line-height: 68px;cursor: pointer;
}
</style>

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

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

相关文章

QPixmap图像处理详解

文章目录 一、QPixmap 图像加载和保存1.1 QPixmap加载图像1.2 QPixmap保存图像1.3 QPixmap 图像加载和保存的实例 二、QPixmap绘制图像2.1 在窗口上绘制2.2 QPixmap缩放绘制2.3 QPixmap旋转绘制2.4 QPixmap 绘制图像的实例2.4 透明度和遮罩 三、图像转换3.1 QImage转QPixmap3.2…

vtk简单介绍、渲染流程、简单示例

一、vtk简单介绍 Vtk&#xff08;visualization toolkit&#xff09;是一个开源的免费软件系统&#xff0c;主要用于三维计算机图形学、图像处理和可视化。 二、vtk渲染流程 流程图如下&#xff1a; 1.vtkSource 数据源 各个类型的图像原始数据。 2.vtkFilter 数据过滤器 …

多继承vs查看类结构

多继承里面的虚函数 类A有两个虚函数&#xff0c;类B重写了其中一个&#xff0c;类C重写了两个&#xff1b; 类C里面可以重写所有继承到的虚函数&#xff08;类A、类B里面的虚函数&#xff09; class A { public:virtual void init() { std::cout << "A init !&qu…

纯HTML调用restfull api工具

<!DOCTYPE html> <html> <head><meta charset"UTF-8"><title>API调用工具</title><style>keyframes marquee {0% {transform: translateX(0%);}80% {transform: translateX(70%);}}.marquee {animation: marquee 2s linea…

机器学习——主成分分析(PCA,未完)

略略翻了下书&#xff0c;差点儿窒息在床上… 看了几个博主的笔记&#xff0c;有点儿头疼 不知道是不是神经裂开生成新突触&#xff0c;还是脑细胞坏死前最后的呐喊 重点看了三篇&#xff0c;觉得非常惊艳&#xff0c;易于理解的 先看了主成分分析的原理详解&#xff0c;但还是…

硬件成本节省60%,四川华迪基于OceanBase的健康大数据数仓建设实践

导语&#xff1a;本文为四川华迪数据计算平台使用 OceanBase 替代 Hadoop 的实践&#xff0c;验证了 OceanBase 在性能和存储成本方面的优势&#xff1a;节省了 60% 的硬件成本&#xff0c;并将运维工作大幅减少&#xff0c;从 Hadoop 海量组件中释放出来&#xff1b;一套系统处…

21天打卡掌握java基础操作

Java安装环境变量配置-day1 参考&#xff1a; https://www.runoob.com/w3cnote/windows10-java-setup.html 生成class文件 java21天打卡-day2 输入和输出 题目&#xff1a;设计一个程序&#xff0c;输入上次考试成绩&#xff08;int&#xff09;和本次考试成绩&#xff0…

华为云云耀云服务器 L 实例使用,从性能、性价比、易用性、稳定性和安全性等方面进行评测

华为云云耀云服务器 L 实例是一款面向中小企业和开发者的云服务器产品。下面我们将从性能、性价比、易用性、稳定性和安全性等方面进行评测&#xff0c;并将其与同类产品进行对比。 性能 华为云云耀云服务器 L 实例基于最新的处理器技术&#xff0c;具备卓越的计算性能和响应速…

如何用工业树莓派和MQTT平台打通OT和IT?

一、应用设备 OT端设备&#xff1a;步进电机&#xff0c;MODBUS TCP远程I/O模块&#xff0c;PLC设备 边缘侧设备&#xff1a;宏集工业树莓派&#xff1b; IT端设备&#xff1a;PC、安卓手机&#xff1b; IT端软件&#xff1a;宏集HiveMQ MQTT通信平台 二、原理 宏集工业树…

iOS 中,isa 指针

每个对象都有 isa 指针&#xff0c;指向对象所属的类。例如类 NSString 其实是类对象。 类对象产生于编译期&#xff0c;单例。 类对象有 isa 指针指向对应元类&#xff0c;元类&#xff08;metaclass&#xff09;中保存了创建类对象以及类方法所需的所有信息。 struct objc_…

vue 后端返回二进制流-前端通过blob对象下载文件-图片

前言 在实际开发中我们经常会遇见下载文件的场景&#xff0c;比如下载合同&#xff0c;下载文件 下载文件有2种方式&#xff0c;一种是后端返回二进制流&#xff0c;前端通过blob对象接受根据不同类型下载 还有一种把地址直接在浏览器新窗口打开浏览器打开pdf可以预览和下载&…

react实现一维表格、键值对数据表格key value表格

UI画的需求很抽象&#xff0c;直接把数据铺开&#xff0c;不能直接用antd组件了 上一行是name&#xff0c;下一行是value&#xff0c;总数不定&#xff0c;最后前端还要显示求和 class OneDimensionTable extends React.Component { render() {const { data } this.props;le…

Linux安装node_exporter使用grafana进行服务器监控

文章目录 linux安装node_exporter修改node_exporter端口服务器安装grafana服务器安装prometheus将linux的noe_exporter配置到prometheus配置文件中导入linux服务器的模板,id: 16098常用exporter安装下载 linux安装node_exporter 要在CentOS 7.6.1810 (Core)上安装node_exporte…

网安顶刊IEEE Transactions on Dependable and Secure Computing

安全顶刊论文列表 写在最前面IEEE Transactions on Dependable and Secure ComputingTable of Contents&#xff08;March-April 2023&#xff09;Volume 20, Issue 2Table of Contents&#xff08;Sept.-Oct. 2023&#xff09;Volume 20, Issue 5 写在最前面 为了给自己找论文…

2023_Spark_实验十九:SparkStreaming入门案例

SparkStreaming入门案例 一、准备工作 二、任务分析 三、官网案例 四、开发NetWordCount 一、准备工作 实验环境&#xff1a;netcat 安装nc&#xff1a;yum install -y nc 二、任务分析 将nc作为服务器端&#xff0c;用户产生数据&#xff1b;启动sparkstreaming案例中的客户端…

【SA8295P 源码分析 (二)】64 - QNX 与 Android GVM 显示 Dump 图片方法汇总

【SA8295P 源码分析】64 - QNX 与 Android GVM 显示 Dump 图片方法汇总 一、QNX侧1.1 surfacedump 功能1.2 screenshot 功能二、Android GVM 侧2.1 screencap -p 导出 PNG 图片2.2 screencap 不加 -p 参数,导出 RGB32 图片2.3 dumpsys SurfaceFlinger --display-id 方法系列文…

php获取农历日期节日

代码地址&#xff1a;php获取农历日期节日-遇见你与你分享 <?php $c new DayService(); $today$c->convertSolarToLunar(date(Y),date(m),date(d)); $time "农历".$today[1].$today[2]."日";class DayService {var $MIN_YEAR 1891;var $MAX_YEAR …

mac电脑zsh: command not found: adb

“zsh: command not found: adb” 的解决方法&#xff1a; 前提 已经成功安装了 Android Studio. 打开 iTerm 终端依次输入下面命令&#xff1a; echo export ANDROID_HOME/Users/$USER/Library/Android/sdk >> ~/.zshrc echo export PATH${PATH}:$ANDROID_HOME/tool…

NIO IN:技术蔚来的首次「大阅兵」

宝山&#xff0c;上海第一钢铁厂旧址。 上周&#xff0c;蔚来在这里点亮金色炉台&#xff0c;2500 立方米高炉&#xff0c;浓重的工业气质与古典凝重的光影交织&#xff0c;蔚来 NIO IN 用科技的进步呼应那个火红的年代。 这是蔚来第一次开科技发布会&#xff0c;为了全方位展…

通过内网穿透快速搭建公网可访问的Spring Boot接口调试环境

&#x1f525;博客主页&#xff1a; 小羊失眠啦 &#x1f516;系列专栏&#xff1a; C语言 、Cpolar、Linux ❤️感谢大家点赞&#x1f44d;收藏⭐评论✍️ 文章目录 前言1. 本地环境搭建1.1 环境参数1.2 搭建springboot服务项目 2. 内网穿透2.1 安装配置cpolar内网穿透2.1.1 …