ICode9

精准搜索请尝试: 精确搜索
  • 把登录与注册的密码都换成密文形2022-07-12 20:01:19

    '''把登录与注册的密码都换成密文形式'''import hashlibimport jsonjson_res = json.dumps({"phoebe":"pheobe123456","ella":'ella987'})with open("test.json",mode='wt',encoding='utf-8&

  • 5Djang-完善后端用户注册逻辑2021-12-11 17:35:23

    1完善django后端用户注册视图逻辑 import json from django.http import JsonResponse from django.shortcuts import render from django.views import View from .models import UserProfile import hashlib # Create your views here. class UserViews(View): def post(s

  • 前端向后端传递数据2021-07-23 07:01:34

    form提交 前端: <!--用table布局、 label的inline-block 对齐input--> <!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8" /> <title>Title</title&g

  • django make_password加密2020-11-21 08:34:36

    1.导包 from django.contrid.auth.hashers import make_password 2.获取并加密 password1 = request.data.get('password) # 获取密码 password = make_password(password1) # 加密

  • 计算机长时间没登陆域会自动脱离域原理2020-06-16 22:06:39

    转自:https://blog.csdn.net/weixin_34260991/article/details/86429459?utm_medium=distribute.pc_relevant.none-task-blog-baidujs-9 计算机长时间没登陆域会自动脱离域,那么是不是超过30天未登录过域的计算机就一定会脱离域? 我的环境中发现有几台计算机由于休假或者出差长时间(

  • phtyon,通过while循环简单的用户名和密码登录2019-06-23 17:47:53

    _username='zhangxin'_password='abc123'_username1='zhaopeng'_password1='abc1234'_username2="youzhiqian"_password2="abc12345"tount=0while tount<3: username=input("username:")

  • 最糟糕的网络密码2019-03-23 16:49:28

    1 123456 2 password 3 123456789 4 12345678 5 12345 6 111111 7 1234567 8 sunshine 9 qwerty 10 iloveyou 11 princess 12 admin 13 welcome 14 666666 15 abc123 16 football 17 123123 18 monkey 19 654321 20 !@#$%^&* 21 charlie 22 aa123456 23 donald 24 passwor

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有