 ...
分类:
其他好文 时间:
2021-03-06 14:46:14
阅读次数:
0
最近遇到一个项目,用了iframe嵌入了另一个项目作为内容区,两个项目之间需要进行信息传递,如果用window.top的话只支持同一个域,于是便想到了postMessage来进行跨域通信。 1.postMessage基本用法 【发送消息】 otherWindow.postMessage(messag ...
分类:
其他好文 时间:
2021-03-05 12:55:51
阅读次数:
0
现在我们已经知道了,fixtures是一个非常强大的功能。 那么有的时候,我们可能会写一个fixture,而这个fixture所有的测试函数都会用到它。那这个时候,就可以用 autouse自动让所有的测试函数都请求它,不需要在每个测试函数里显示的请求一遍。 具体用法就是,将autouse=True传 ...
分类:
其他好文 时间:
2021-03-04 13:15:55
阅读次数:
0
sed -n '1p' input #打印input文件的第一行sed '1p' input #不仅打印文件第一行,还打印文件的输出内容sed -n '3,6p' input #搜索input文件第3~6行的文件sed -n '/certificate/p' input #搜索input文件cert ...
分类:
其他好文 时间:
2021-03-04 13:06:57
阅读次数:
0
在前端,id是唯一的,只属于一个元素。 在python中,元素定位的方法如下: def find_element_by_id(self, id_): """Finds an element by id. :Args: - id\_ - The id of the element to be foun ...
分类:
其他好文 时间:
2021-03-03 12:29:01
阅读次数:
0
Nmap扫描原理与用法 1 Nmap介绍 Nmap是一款开源免费的网络发现(Network Discovery)和安全审计(Security Auditing)工具。软件名字Nmap是Network Mapper的简称。Nmap最初是由Fyodor在1997年开始创建的。随后在开源社区众多的志愿者参 ...
分类:
其他好文 时间:
2021-03-03 12:11:59
阅读次数:
0
1.merge的用法 用于将两个有序的容器合并到另外一个容器,合并后的容器也是有序的。头文件#include <algorithm> #include <iostream> #include <vector> #include <algorithm> int main(){ std::vector< ...
分类:
编程语言 时间:
2021-03-03 12:10:04
阅读次数:
0
copy的用法 copy分为深copy和浅copy 1 浅copy 示例 data = { "name":"alex", "age":18, "scores":{ "语文":130, "数学":60, "英语":98, } } d2 = data.copy() data["age"] = 20 da ...
分类:
其他好文 时间:
2021-03-03 12:09:08
阅读次数:
0
https://www.cnblogs.com/yeungchie/ code ; ; 创建一个 tree 作为主 tree mainTree = hiCreateTree('mainTree) ; 创建两个 tree item treeItem1 = hiCreateTreeItem('treeI ...
分类:
其他好文 时间:
2021-03-02 12:29:11
阅读次数:
0
C# 中 PadLeft和PadRight 的用法 C# 中 PadLeft和PadRight 的用法 在 C# 中可以对字符串使用 PadLeft 和 PadRight 进行轻松地补位。 PadLeft(int totalWidth, char paddingChar) //在字符串左边用 pad ...