码迷,mamicode.com
首页 >  
搜索关键字:spring邮件 email    ( 5469个结果
Mybatis-plus中的condition条件
@Test public void testCondition() { String name = "王"; String email = ""; condition(name, email); } private void condition(String name, String email) ...
分类:其他好文   时间:2019-11-22 01:03:20    阅读次数:345
./g1.sh q w e r 5个参数
# ./g1.sh q w e r t./g1.sh q w e r5个参数number is q w e r t[root@localhost get]# cat g1.sh#!/bin/bash# -*- coding: utf-8 -*-# #Author:chengyixuan#Email: ...
分类:其他好文   时间:2019-11-21 20:03:53    阅读次数:68
动态笔芯
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:其他好文   时间:2019-11-21 17:02:04    阅读次数:59
python读取文件数据实现简单的注册操作
#!/usr/bin/env python# -*- coding: utf-8 -*-# @Time : 2019-11-21 14:32# @ player :zhaohq# @Email : 909095763@qq.com# @File : zhuc.pyname = input('name ...
分类:编程语言   时间:2019-11-21 16:43:43    阅读次数:63
常用正则表达式(数字、字符、固定格式)
一、数字相关的正则表达式 标准数字:/(^-?[0-9][0-9]*(.[0-9]+)?)$/ n位定长的数字:^\d{n}$m-n位之间的数字:^\d{m,n}$零和非零开头的数字:^(0|[1-9][0-9]*)$非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1, ...
分类:其他好文   时间:2019-11-19 01:10:02    阅读次数:79
GIT
Git相关命令整理 git config --global user.name //配置姓名 git config --global user.email //配置邮箱 git config --list //查看配置信息 git init //初始化本地仓库 git status //查看文件状态 ...
分类:其他好文   时间:2019-11-17 20:35:47    阅读次数:72
Git 常见命令
增加 修改 配置 设置 git 的 user name 和 email 生成秘钥 忽略警告 设置core.autocrlf=false,windows也用LF换行。 设置一个.editorconfig 来保证文件都是 LF 结尾。除了记事本,其他编辑器都可以正常编辑 客户端配置 "https://j ...
分类:其他好文   时间:2019-11-17 14:45:32    阅读次数:64
Git分支管理——创建、合并、删除分支
前言:几乎所有的版本控制都以某种形式支持分支。使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线。Git的分支模型成称为它的“必杀技特性”,也正因为这一特性,使得Git从众多版本控制系统中脱颖而出。Git处理分支的方式是难以置信的轻量,创建新的分支这一操作是秒级完成的,并且在不同分支之间的切换操作也是一样便捷。Git的分支,其实本质上仅仅是指向提交对象的可变指针。Git的默认分支
分类:其他好文   时间:2019-11-15 09:16:30    阅读次数:68
六十三:CSRF攻击与防御之系统准备之登录与转账功能
登录功能 在forms里面添加验证 class LoginForm(Form): email = StringField(validators=[Email(message='邮箱格式错误')]) password = StringField(validators=[Length(3, 20, me ...
分类:其他好文   时间:2019-11-15 00:14:47    阅读次数:82
【转】解决smtplib发送多人邮件没有展示收件人的问题
#!/usr/bin/env python# -*- coding: utf-8 -*- import smtplibfrom email.mime.multipart import MIMEMultipartfrom email.mime.text import MIMETextfrom emai ...
分类:其他好文   时间:2019-11-14 23:39:05    阅读次数:144
5469条   上一页 1 ... 61 62 63 64 65 ... 547 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!