码迷,mamicode.com
首页 >  
搜索关键字:username    ( 8940个结果
Flask之模型字段解析与OA建模实训
flask常用的模型字段和参数 常用的字段类型表 字段说明 映射到数据库对应类型 Integer 整数 int类型 String 字符串,String类内可选择length参数的值用于设置最大字符个数 varchar类型 Text 用于储存较长的Unicode文本,,理论上可以储存65535个字节 ...
分类:其他好文   时间:2021-06-13 10:49:14    阅读次数:0
jpa中的常用关键字
使用jpa时,我们需要继承至JpaRepository 继承之后,可以写HQL或者通过方法名自动生成SQL语句 生成SQL语句时JPA中的常用关键字 And 等价于 SQL 中的 and 关键字, 比如 findByUsernameAndPassword(String user, String pw ...
分类:其他好文   时间:2021-06-13 10:29:36    阅读次数:0
vue-点击切换li文本颜色
<!-- * @description 参数1 * @fileName shoppint * @author userName * @date 2021-06-12 17:02:03 * @version V1.0.0 !--> <!DOCTYPE html> <html lang="zh-CN"> ...
分类:其他好文   时间:2021-06-13 10:25:03    阅读次数:0
LINUX检索 文件/目录
查找当前目录下某个文件 find . –name [filename] -i 不区分大小写 find . –iname [filename] -type 按类型进行查找,d查找目录,f查找文件 find . –type d –name [document] find . type f –name [ ...
分类:系统相关   时间:2021-06-13 09:58:24    阅读次数:0
个人冲刺(三)——体温上报app(二阶段)
冲刺任务:完成用户类、温度数据和第二页面类的编写 User.java package com.example.helloworld; class User { private String username; private String userid; private String userpho ...
分类:移动开发   时间:2021-06-11 18:09:14    阅读次数:0
Git Bash输错账号密码如何重新输入
Git Bash输错账号密码如何重新输入 很多时候我们容易在Git Bash操作的时候,不慎输入错误的用户名或密码,此时一直提示: remote: Incorrect username or password ( access token ) 解决办法: 1.打开控制面板(快捷打开win+R,输入c ...
分类:其他好文   时间:2021-06-09 15:33:00    阅读次数:0
二.node.js中的get请求中常用的两种方式
const express = require("express"); const app = express(); app.listen(8080); /** * 请求方式一 * http://localhost:8080/reg?username=zhangsan&password=123456 ...
分类:Web程序   时间:2021-06-08 23:36:42    阅读次数:0
jmeter前置处理器中各工具的使用
本文参考https://blog.csdn.net/df0128/article/details/80953755 1.用户参数 在应用的时候使用${username}即可。用户参数相比Csv data set config的弊端在于,不适合取值范围非常大。 2.Bean Shell PreProc ...
分类:其他好文   时间:2021-06-08 23:13:51    阅读次数:0
CTF web之旅 45
提示备份文件 直接url/www.zip得到源代码 分别得到以下关键代码 <?php include 'flag.php'; error_reporting(0); class Name{ private $username = 'nonono'; private $password = 'yesy ...
分类:Web程序   时间:2021-06-08 22:34:20    阅读次数:0
pymysql功能封装
import pymysql# username : adil# password : helloyyjclass DataBaseHandle(object): ''' 定义一个 MySQL 操作类''' def __init__(self, host, username, password, d ...
分类:数据库   时间:2021-06-07 20:23:52    阅读次数:0
8940条   上一页 1 2 3 4 5 6 ... 894 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!