1. 每个函数都包含两个非继承而来的方法:call()方法和apply()方法。 2. 相同点:这两个方法的作用是一样的。 都是在特定的作用域中调用函数,等于设置函数体内this对象的值,以扩充函数赖以运行的作用域。 一般来说,this总是指向调用某个方法的对象,但是使用call()和apply() ...
分类:
移动开发 时间:
2020-09-18 04:08:27
阅读次数:
53
开发只给了一串字符串,要转化成RSA加密的结果。 找了一堆rsa加密的算法: # -*- coding: utf-8 -*- import rsa import base64 # 随机成一对密钥,然后保存.pem格式文件,也可以直接使用 (pubkey, privkey) = rsa.newkeys ...
分类:
编程语言 时间:
2020-09-18 03:19:11
阅读次数:
62
前几天遇到个奇葩问题,502请求没有在我预定的日志里出现,而是出现在了error.log里。但是我就需要监听这些502请求,搜索了一阵子没从网上找到谁给出具体原因。今天突然心血来潮把access_log的位置从location/{挪到了server{,也就是不放在任何location下,就可以了。由结果分析原因:由于我的location/{里写了一个127.0.0.1:8888我故意想让访问出现5
分类:
其他好文 时间:
2020-09-18 02:43:11
阅读次数:
33
1 object sev = null; 2 string message = gp.GetMessages(ref sev); 3 //如果错误中包含Error:999999说明是内存问题 4 方法一 1 方法二 2 string str = ""; 3 for (int i = 0; i < g ...
分类:
其他好文 时间:
2020-09-18 01:53:24
阅读次数:
35
执行 GET 请求 // 为给定 ID 的 user 创建请求 axios.get('/user?ID=12345') .then(function (response) { console.log(response); }) .catch(function (error) { console.lo ...
分类:
移动开发 时间:
2020-09-18 01:37:15
阅读次数:
46
reno@MyComputer:~/tools/cmake-3.12.4$ ./configure CMake 3.12.4, Copyright 2000-2018 Kitware, Inc. and Contributors C compiler on this system is: cc Er ...
分类:
编程语言 时间:
2020-09-18 01:02:04
阅读次数:
40
常见问题 urllib.error.HTTPError: HTTP Error 403: Forbidden 有些服务器会拒绝非浏览器查看内容,此时需要添加headers参数,将爬虫程序伪装成浏览器 Chrome版本信息 地址:chrome://version/ 1 # coding: utf-8 ...
分类:
编程语言 时间:
2020-09-18 00:47:00
阅读次数:
39
初始化新的项目,在Configure的第一行可以看到如下代码: if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } else { app.UseExceptionHandler("/Home/Error"); app.UseHs ...
分类:
Web程序 时间:
2020-09-18 00:15:09
阅读次数:
40
Plugin group_replication reported;Authentication plugin ‘caching_sha2_password‘ reported error: Authentication requires secure connection. Error_code: MY-002061
分类:
数据库 时间:
2020-09-17 22:46:40
阅读次数:
36
数据库中明显已经可以查看到自己创建的数据库,但是还是显示: Rails / MySQL2: Error - Unknown database的错误。 解决方法: rake db:create ...
分类:
数据库 时间:
2020-09-17 21:54:16
阅读次数:
40