本篇实现F1功能(见红色部分) 功能序号 HTTP动词(HTTP verbs) API 描述 F1 GET /api/users 管理员获取用户列表 F2 POST /api/users 管理员添加用户 F3 PATCH /api/users/{id}/role 管理员修改用户角色 F4 PATCH ...
1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 5 struct student { 6 char id; 7 struct student* next; 8 }; 9 typedef struct student S; ...
分类:
其他好文 时间:
2021-01-27 13:51:20
阅读次数:
0
-- 1064 -- 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use nea ...
分类:
其他好文 时间:
2021-01-27 13:38:40
阅读次数:
0
一、查看集群状态 kubectl cluster-info kubectl cluster-info 二、查看各组件状态 kubectl get componentstatuses kubectl get cs #上条命名缩写 三、GET信息(加上-o wide查看详细信息) kubectl get ...
分类:
其他好文 时间:
2021-01-27 13:30:59
阅读次数:
0
接着上篇来看 https://www.cnblogs.com/cuocuo/p/14329379.html <?php namespace Home\Controller; use Think\Controller; use \Think\Logs; class IndexController ex ...
分类:
Web程序 时间:
2021-01-27 13:29:47
阅读次数:
0
<div id="app"> <todo> <todo-title slot="todo-title" :title="title"></todo-title> <todo-item slot="todo-item" v-for="(item,index) in items" :item="item ...
分类:
其他好文 时间:
2021-01-27 13:25:45
阅读次数:
0
koa2-request koa2的request库封装,支持async和await写法 安装 npm install koa2-request 使用方法 var koa2Req = require('koa2-request'); app.use(async(ctx, next) => { // ...
分类:
Web程序 时间:
2021-01-27 13:21:22
阅读次数:
0
1、输入cmd,打开cmd命令框。比如说要关闭端口号为8082的程序 2、输入netstat -nao|findstr 8082 查看8082端口,找到了PID为19912的进程ID在监听这个端口。 3、看看19912是什么进程 查看19912进程,这里残留了一个java.exe进程 4、打开任务管 ...
分类:
其他好文 时间:
2021-01-27 13:20:01
阅读次数:
0
卸载代理软件后电脑不能上网 两种方法,都曾解决过我这个问题 1、Win+r 输入regedit回车 进入 计算机\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections 删掉那 ...
分类:
其他好文 时间:
2021-01-27 13:18:25
阅读次数:
0
1、单例模式 singleton(spring默认机制) 无论创建多少个Spring IoC容器的bean实例,只要id与bean定义相匹配,就只会返回bean的同一实例【singleton 为默认值】 <bean id="user2" class="com.wang.pojo.User" c:ag ...
分类:
编程语言 时间:
2021-01-27 13:03:34
阅读次数:
0