一 键盘事件 1)常用的三个 //1 onkeyup 按键弹起时触发 document.onkeyup = function () { console.log('弹起时才触发'); } //2 onkeydown 按键按下的时候触发 document.onkeydown = function () ...
分类:
其他好文 时间:
2021-02-26 13:13:55
阅读次数:
0
华为交换机端口模式 以太网端口的三种链路类型: Access, Trunk, Hybrid Access 类型的端口只能属于 1 个 VLAN ,一般用于连接计算机的端口; Trunk 类型的端口可以允许多个 VLAN 通过,可以接收和发送多个 VLAN 的报文,一般用于交换机之间连接的端口; Hy ...
分类:
其他好文 时间:
2021-02-26 13:13:25
阅读次数:
0
地址 https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof/ 请从字符串中找出一个最长的不包含重复字符的子字符串,计算该最长子字符串的长度。 示例 1: 输入: "abcabcb ...
分类:
其他好文 时间:
2021-02-26 13:13:05
阅读次数:
0
用户主题宽表 类似累积事实表 drop table if exists dwt_user_topic; create external table dwt_user_topic ( user_id string comment '用户 id', login_date_first string com ...
分类:
其他好文 时间:
2021-02-26 13:12:24
阅读次数:
0
官网活动,免费领取WPS会员15天和WPS稻壳会员15天!新老用户均可领取。 领取地址:https://mp.weixin.qq.com/s/4AyUmSqxP0jkMWVvhFr0cw 今天带大家一起免费领取的是WPS会员15天和WPS稻壳会员15天(此活动为官方活动,真实有效!) WPS会员与W ...
分类:
其他好文 时间:
2021-02-26 13:11:15
阅读次数:
0
2月2日消息,当地时间周一谷歌宣布将关闭旗下Stadia游戏开发工作室。整个Google Stadia云游戏业务将调整发展方向,不再涉足游戏开发,而是向第三方游戏开发商提供平台,同时为用户提供Stadia Pro订阅服务。 谷歌云游戏业务Google Stadia于2019年末发布,曾誓言要颠覆整个 ...
分类:
其他好文 时间:
2021-02-26 13:11:04
阅读次数:
0
import pytest from login import login_check datas = [ {"user":'python37', "passwd": 'lemonban', "check": {"code": 0, "msg": "登录成功"} }, {"user":'python ...
分类:
其他好文 时间:
2021-02-26 13:10:21
阅读次数:
0
算是第一个独立完成的中等题了。对二叉树进行一次先序遍历即可。 class Solution { public: TreeNode *targetNode; TreeNode *resultNode; TreeNode *getTargetCopy(TreeNode *original, TreeNo ...
分类:
其他好文 时间:
2021-02-26 13:09:42
阅读次数:
0
实战案例—使用PXE工具批量部署服务器 【案例分析】 (1)规划节点 IP地址 主机名 节点 备注 192.168.200.10 localhost PXE 版本为centos6 64位 192.168.200.20 controller controller 版本为centos7 64位 (2)在 ...
分类:
其他好文 时间:
2021-02-26 13:09:15
阅读次数:
0
今天跟着微软官方学习xamarin,做到导航切换,死活出不来编辑详情页面,最后发现是自己写导航参数的时候等号前后拼写的时候添加空格导致,真是一不注意就出错。 正确的拼出来是:note?itemid=xxxx 错误的拼出来是:note?itemid = xxx 能够注意到他们的区别了吧:) ...
分类:
其他好文 时间:
2021-02-26 13:08:57
阅读次数:
0
DDT 数据驱动测试 思想 应用场景:场景流程是一样的,只有数据不一样。 参数化 python测试框架当中应用数据驱动: unittest: ddt库 pytest: 自带的。 在测试用例的前面加上: @pytest.mark.parametrize("参数名",列表数据) 参数名:用来接收每一项数 ...
分类:
其他好文 时间:
2021-02-26 13:08:35
阅读次数:
0
? GET: /zoos:列出所有动物园? POST: /zoos:新建一个动物园? GET: /zoos/ID:获取某个指定动物园的信息? PUT: /zoos/ID:更新某个指定动物园的信息(提供该动物园的全部信息)? PATCH: /zoos/ID:更新某个指定动物园的信息(提供该动物园的部分 ...
分类:
其他好文 时间:
2021-02-26 13:08:02
阅读次数:
0
1.指定到人 @Override @Transactional(rollbackFor = Exception.class) // @GlobalTransactional public boolean startProcess(ProcessPurchaseOrder bean) { //是否启动 ...
分类:
其他好文 时间:
2021-02-26 13:05:55
阅读次数:
0
3D Game Shaders For Beginners Screen Space Reflection (SSR)https://lettier.github.io/3d-game-shaders-for-beginners/screen-space-reflection.html#reflec ...
分类:
其他好文 时间:
2021-02-26 13:05:43
阅读次数:
0
The expensive shops in a famous arcade near Piccadilly were just opening. At this time of the morning, the arcade was almost empty. Mr. Taylor, the ow ...
分类:
其他好文 时间:
2021-02-26 13:05:25
阅读次数:
0
问题:真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file 分析:Xcode12之前:编译模拟器静态库支持i386 x86_64两架构;编译真机静态库支持armv7 arm ...
分类:
其他好文 时间:
2021-02-26 13:05:06
阅读次数:
0
有一些灯,然后有一些按钮。
某一个按钮能使某些灯泡改变亮灭状态。
然后问你可以弄出多少种这一排灯的不同状态。
(不同状态:只需要有一个灯泡的亮灭情况不同就可以) ...
分类:
其他好文 时间:
2021-02-26 13:04:52
阅读次数:
0