一、小组博客地址 二、个人任务板块 用户注册模块 从前端获取的account,根据account在user表中查询是否存在该用户 不存在则根据获取的account、password信息在数据库中创建数据条目 添加学生模块 根据从前端获取的id、name、date属性在数据库中新建对应数据条目 修改学 ...
分类:
编程语言 时间:
2021-01-29 12:03:38
阅读次数:
0
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
难度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 不写原生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安装软件时,默认都会自动检查更新homebrew,显示Updating Homebrew...,会浪费很多的时间,所以要关闭自动更新。 # 关闭自动更新,在.zshrc文件中加入下方命令,如果是bash请加在.bash_profile文件中,全局变量可以sudo vi /etc/pr ...
分类:
其他好文 时间:
2021-01-28 12:07:36
阅读次数:
0
No active profile set, falling back to default profiles: default SpringBoot发布的时候发现出现这个错误 , 当然这个错误一搜就有答案 , 大部分是依赖的问题 <dependency> <groupId>org.springfr ...
分类:
编程语言 时间:
2021-01-28 12:00:28
阅读次数:
0
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
今日内容 1. XML 1. 概念 2. 语法 3. 解析 XML: 1. 概念:Extensible Markup Language 可扩展标记语言 * 可扩展:标签都是自定义的。 <user> <student> * 功能 * 存储数据 1. 配置文件 2. 在网络中传输 * xml与html的 ...
分类:
Web程序 时间:
2021-01-28 11:54:24
阅读次数:
0
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
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