解决Charles安装了证书仍提示unknown 安卓机已安装了证书,部分https的请求还是无法抓取, 可能会遇到的情况 method的是connect 提示: 主要是因为以下原因 安卓系统 从Android N开始,您需要向您的应用添加配置,以使其信任Charles SSL Proxying生成 ...
分类:
其他好文 时间:
2020-04-30 19:29:07
阅读次数:
413
我要从一个页面跳到另一个页面,同时实现传值 网上说了很多兄弟传值,什么bus,不管用,反正我试不灵,也可能我的方法不对 从creatTable传值传到Props那个, 1.这个creatTable中的一个method中的一个方法里的部分 this.$router.push({ path: "crea ...
分类:
其他好文 时间:
2020-04-30 19:12:34
阅读次数:
60
我们在浏览网页的时候,经常需要向服务器提交信息,并让后台程序处理。浏览器中使用 GET 和 POST 方法向服务器提交数据。 GET 方法 GET方法将请求的编码信息添加在网址后面,网址与编码信息通过"?"号分隔。如下所示: http://www.manongjc.com/hello?key1=va ...
分类:
Web程序 时间:
2020-04-30 17:31:33
阅读次数:
60
We can use 'jest.spyOn', similr to 'spyOn' in Jasmine. jest.spyOn(utils, 'getWinner') We get 'getWinner' as a method. Jest has mockImplementation: // ...
分类:
编程语言 时间:
2020-04-30 15:55:04
阅读次数:
69
public class person_test { public static void main(String[] args) { // TODO Auto-generated method stub Person p1 = new Person(); p1.getValue("zhangsan ...
分类:
其他好文 时间:
2020-04-30 13:24:44
阅读次数:
66
1、在测试springmvc的程序的时候出现如下错误: pers.zhb.controller.HelloController#hello(Model) to { /haha}: There is already 'helloController' bean method pers.zhb.cont ...
分类:
其他好文 时间:
2020-04-30 09:46:59
阅读次数:
144
一、core 模块 1、Mat - 基本图像容器 Mat 是一个类,由两个数据部分组成:矩阵头(包含矩阵尺寸,存储方法,存储地址等信息)和一个指向存储所有像素值的矩阵(根据所选存储方法的不同矩阵可以是不同的维数)的指针。 创建Mat对象方法: 1 1->Mat() 构造函数: 2 Mat M(2,2 ...
分类:
其他好文 时间:
2020-04-29 14:46:52
阅读次数:
74
参考: 1,https://developer.apple.com/documentation/foundation/nsbundle/1417694-localizedstringforkey 2,MJRefresh 原理:1,找到本地化字符串表(string table)对应的 bundle,例 ...
分类:
其他好文 时间:
2020-04-29 12:57:02
阅读次数:
74
首先在controller中大部分注解都是web包的,注解报错大多因为web包的问题 @PostMapping=@RequestMapping(method=post) @GetMapping=@RequestMapping(method=get) 这三个是用于接收url请求的 一般来说在sprin ...
分类:
移动开发 时间:
2020-04-28 22:56:53
阅读次数:
64
方法一: HttpContext.Current.Request.RequestType == "POST"; //当前请求为:POST HttpContext.Current.Request.RequestType == "GET"; //当前请求为:GET 方法二: if(Request.Ser ...