码迷,mamicode.com
首页 >  
搜索关键字:user profile    ( 43843个结果
Java课程设计—学生成绩管理系统
一、小组博客地址 二、个人任务板块 用户注册模块 从前端获取的account,根据account在user表中查询是否存在该用户 不存在则根据获取的account、password信息在数据库中创建数据条目 添加学生模块 根据从前端获取的id、name、date属性在数据库中新建对应数据条目 修改学 ...
分类:编程语言   时间:2021-01-29 12:03:38    阅读次数:0
powerlevel10k: 最好看,方便,实用的命令行主题
powerlevel10k: 最好看,方便,实用的命令行主题 项目地址 安装 Linux 安装 Zsh sudo apt install zsh 安装 Oh-My-Zsh 方法 命令 curl sh -c "$(curl -fsSL https://raw.githubusercontent.com ...
分类:其他好文   时间:2021-01-29 11:50:41    阅读次数:0
DVWA-XSS(Reflected-反射型)
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:其他好文   时间:2021-01-29 11:44:05    阅读次数:0
AJAX/JSON
#AJAX 不写原生js的AJAX,用JQuery $.ajax({ type: get, url: "demo.html", data: {username:lw}, dataType: ..., success: function(msg){ alert(msg); }, error:funct ...
分类:Web程序   时间:2021-01-28 12:11:32    阅读次数:0
关闭brew每次执行时的自动更新
每次使用brew安装软件时,默认都会自动检查更新homebrew,显示Updating Homebrew...,会浪费很多的时间,所以要关闭自动更新。 # 关闭自动更新,在.zshrc文件中加入下方命令,如果是bash请加在.bash_profile文件中,全局变量可以sudo vi /etc/pr ...
分类:其他好文   时间:2021-01-28 12:07:36    阅读次数:0
SpringBoot: No active profile set, falling back to default profiles: default , 不一定是依赖的问题
No active profile set, falling back to default profiles: default SpringBoot发布的时候发现出现这个错误 , 当然这个错误一搜就有答案 , 大部分是依赖的问题 <dependency> <groupId>org.springfr ...
分类:编程语言   时间:2021-01-28 12:00:28    阅读次数:0
mysql中写sql的好习惯
1 写完SQL先explain 查看执行计划 写完SQL,用explain分析一下,尤其注意走不走索引 explain select userid,name,age from user where userid=10086 or age=18; 2操作delete或者update语句,加个limit ...
分类:数据库   时间:2021-01-28 11:55:05    阅读次数:0
XML:快速入门、XML约束、XML解析、Jsoup
今日内容 1. XML 1. 概念 2. 语法 3. 解析 XML: 1. 概念:Extensible Markup Language 可扩展标记语言 * 可扩展:标签都是自定义的。 <user> <student> * 功能 * 存储数据 1. 配置文件 2. 在网络中传输 * xml与html的 ...
分类:Web程序   时间:2021-01-28 11:54:24    阅读次数:0
springboot+oracle+mybatis实现crud
1.项目结构如下 2.user类的代码 package com.ximen.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data//生成get和set方 ...
分类:数据库   时间:2021-01-28 11:54:05    阅读次数:0
suiteCRM____Admin
1. Individual users只能set up自己的个人账号,admin可以从User Management为其他用户set up个人账号(右上角下拉菜单中选Admin) 2. Securitly Groups:define groups of users with particular a ...
分类:其他好文   时间:2021-01-28 11:52:12    阅读次数:0
43843条   上一页 1 ... 52 53 54 55 56 ... 4385 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!