一门APP --打包手机软件神器 Hbuilder打包web端出现了较多的问题。路由问题,以及其他跳转问题。还有使用Fusion APP打包web端网站也有着较多的问题。然后发现了一个打包HTML或者封装url网址的工具。一门APP一般VUE开发移动端,直接在网站上线。然后使用一门打包这个http网址。简单设置名称和网站地址设计软件图标,切图还有其他的API可以配置,有免费也有收费的。 2020-04-22 09:26:13 未分类 ·
Nginx反向代理 server { listen 80; server_name xxx.com; location / { proxy_pass http://xxx.cn/; proxy_redirect default; } }根据端口和 server_name 反向代理。如果都不匹配默认第一个server使用以上配置之后,虽然能够访问到转发后的地址,但是所有静态资源文件的请求都报404错误,导致反向代理并没有完全成功。出于nginx的路由路径【/yan... 2020-04-22 09:25:00 未分类 Nginx ·
Nginx 负载均衡 轮询: upstream dalaoyang-server { server localhost:11000; server localhost:11001; server localhost:11002; }权重: upstream dalaoyang-server { server localhost:10001 weight=1; server localhost:10002 weight=2; }worker_process... 2020-04-22 09:24:43 未分类 ·
压力测试 1.Webbench wget http://home.tiscali.cz/cz210552/distfiles/webbench-1.5.tar.gz 或者:http://itsse.oss-cn-shanghai.aliyuncs.com/files/1591677875011.gz tar xvzf webbench-1.5.tar.gz make 如果error: mkdir -p /usr/local/man chmod 644 /usr/local/man make install webbench // we... 2020-04-22 09:24:19 未分类 ·
Vue项目打包 1.打包优化 --report npm run build --report 两个-// 根目录创建vue.config.js module.exports = { configureWebpack: { externals: { vue: "Vue", "vue-router": "VueRouter", vant: "vant" } } }; 2.页面刷新404// experss 操作 var history = require('connect-history-api-fal... 2020-04-22 09:23:53 未分类 ·
Vue移动端隐藏滚动条 html, body { width: 100%; height: 100%; overflow: scroll; } html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0px; height: 0px; } body { margin: 0; } 2020-04-22 09:23:28 未分类 ·
Nodejs express搭建https服务 阿里云申请ssl证书。下载证书 就出现两个文件 .key与.pem文件var fs = require('fs'); var http = require('http'); var https = require('https'); var privateKey = fs.readFileSync('./path/**.key', 'utf8'); var certificate = fs.readFileSync('./path/**.pem', 'utf8'); var credentials = {key: privateKey, cert... 2020-04-22 09:22:49 未分类 ·
BBR bbr Plus wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh https://cdn.jsdelivr.net/gh/WishMelz/file/sh/bbr1.shUbuntu内核升级以及如何开启BBR加速1.) Ubuntu开启BBR的前提是内核必须等于高于4.9 查看命令... 2020-04-22 09:21:51 未分类 ·
charles for mac // 适用于Charles任意版本的注册码 // help---> register Registered Name: https://zhile.io License Key: 48891cf209c6d32bf4 文章原链: https://zhile.io/2017/07/07/charles-proxy-usage-and-license.html 2020-04-22 09:21:27 未分类 ·
Vue项目错误笔记 一,路由错误import VueRouter from 'vue-router' const VueRouterPush = VueRouter.prototype.push VueRouter.prototype.push = function push(to) { return VueRouterPush.call(this, to).catch(err => err) }二,不停发送请求1. 找到/node_modules/sockjs-client/dist/sockjs.js 2.找到代码的 1605行 try { ... 2020-04-22 09:21:07 未分类 ·
Node接口笔记 JTW 生成TOKEN let token = jsonwebtoken.sign({ id: data[0].id // 数据 }, secret, { expiresIn: 60 * 60 * 24 * 30 * 6 }) // 半年,过期时间 ,单位秒 secret为秘钥 解析 try { // 解析令牌,返回对象:{ exp: 过期时间, crt:创建时间 ...} userInfo = jwt.ve... 2020-04-22 09:19:55 NodeJS ·
Centos安装Nginx # 依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel # 下载安装包 wget http://nginx.org/download/nginx-1.13.7.tar.gz # 解压 tar -xvf # 进入运行文件 ./configure # 运行编译 make # 安装 make install nginx reload 重启 service nginx restart nginx -t 验证配置文件# 一份模板,不完整 worker_proc... 2020-04-22 09:19:36 未分类 ·
Nodejs,Mysql连接出错 const connection = mysql.createConnection(db)长时间不操作mysql,会自动关闭连接,导致服务中断。修改为:使用连接池const connection = mysql.createPool(db)const mysql = require('mysql'); const config = require('./config') const conn = mysql.createPool(config.db); var queryDB = func... 2020-04-22 09:19:07 未分类 ·
speedtest-cli测试带宽 # wget https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py # chmod +rx speedtest.py # sudo mv speedtest.py /usr/local/bin/speedtest-cli # sudo chown root:root /usr/local/bin/speedtest-cli speedtest-cli --bytes以字节计算的方式来测试上下行速度 speedtest-cli --share将速度测试的结... 2020-04-22 09:18:47 未分类 ·
使用request后台发送请求 处理有跨域的接口。后台调用const request = require('request'); router.get("/wnl", (req, res) => { request('https://www.sojson.com/open/api/lunar/json.shtml', function(error, response, body) { if (!error && response.statusCode == 200) { console.log(body) // S... 2020-04-22 09:18:23 未分类 ·
阿里大鱼发送短信 // 配置 const Core = require('@alicloud/pop-core'); var client = new Core({ accessKeyId: '****', // id accessKeySecret: '***', // 密钥 endpoint: 'https://dysmsapi.aliyuncs.com', apiVersion: '2017-05-25' }); // 用户模板信息 var params = { "RegionId": "cn-han... 2020-04-22 09:17:51 未分类 ·
阿里OSS存储 nodejs发送文件到public内,调用oss接口上传文件。 <input type="file" name="" id="photo"> $("#photo").on("change", function () { let file = $(this)[0].files[0]; let formdata = new FormData(); formdata.append("photo", file); $.ajax({ typ... 2020-04-22 09:17:27 未分类 ·