To enable Flash for a specific website, first open your Chrome browser and type chrome://settings/content in the address bar, then press enter. Then o ...
分类:
其他好文 时间:
2020-05-08 10:03:00
阅读次数:
76
1. 不用中间件的话可以这样写 app.all('*', function (req, res, next) { res.header("Access-Control-Allow-Origin", "http://www.xxx.com"); res.header('Access-Control-A ...
分类:
其他好文 时间:
2020-05-08 09:45:45
阅读次数:
76
去mysql安装下的my.ini文件,右键记事本打开,然后找到 [mysqld] ,在[mysqld]后面添加一行 skip-grant-tables 然后保存然后重启mysqlnet stop mysqlnet start mysql ...
分类:
数据库 时间:
2020-05-06 23:14:09
阅读次数:
122
打开应用商店,安装火狐浏览器国际版 然后再使用火狐浏览器打开以下地址: https://get.adobe.com/cn/flashplayer/ 并点击立即下载 点击保存文件 下载,并解压 解压后,查看文件 在解压后的文件夹中,右键点击,选择在终端中打开 输入以下命令: sudo cp -r us ...
分类:
其他好文 时间:
2020-05-06 14:06:22
阅读次数:
1135
我们在上传图片时经常需要判断图片的尺寸是否在要求范围内 <input type="file" onchange="loadPic(this)"/> var Max_Size = 2000; //2M var Max_Width = 100; //100px var Max_Height = 200; ...
分类:
Web程序 时间:
2020-05-06 14:00:08
阅读次数:
85
基于IP的访问控制 http_access_module(允许哪些IP可以访问,哪些不允许访问) 基于用户的信任登录 http_auth_basic_module(提供登录认证界面,通过登录认证的方式控制访问) 1、http_access_module方式 1)http_access_module ...
分类:
其他好文 时间:
2020-05-05 17:43:36
阅读次数:
59
关于方法表的查找方法: 1. 找到访问控制access_flag 00 01== public 2. 找到简单名字name_index 00 17== inc 3. 找到描述符descriptor_index 00 18== ()I 翻译过来: public int inc() 4. 找到attri ...
分类:
其他好文 时间:
2020-05-05 12:53:02
阅读次数:
69
1.Coolors:https://coolors.co 2.Color Hunt:https://colorhunt.co 3.AdobeColor:https://color.adobe.com/zh/create 4.ColorDrop:https://www.colordrop.io 5.h ...
分类:
其他好文 时间:
2020-05-05 10:31:02
阅读次数:
95
网站由服务器,容器,脚本,数据库组成。 服务器和家庭电脑一样。 容器又为环境或服务:apache,lls,tomcat,nginx等 脚本:php,aspx,asp,jsp等 数据库:mysql,mssql,access,oracle等 环境的搭配关系:1.apache+mysql+php 2.ng ...
分类:
Web程序 时间:
2020-05-05 00:26:45
阅读次数:
112
2020/5/4号再次爆出这个问题,导致我push项目失败,经过仔细研究发现 【Github登录】更新官方推荐的使用access_token安全访问API的方式,使用Github推荐的最新方式(Authorization HTTP header),旧方式(query parameter)即将被废弃 ...
分类:
其他好文 时间:
2020-05-04 21:14:21
阅读次数:
532