摘要: 简单的设计一个权限比对方式: 1、假设有以下权限数字 const a = 1 const b = 2 const c = 4 const d = 8 const e = 16 转换成二进制为 console.log('a:', parseInt(a).toString(2)) console.log 阅读全文
posted @ 2021-08-10 11:13 fengyujia 阅读(78) 评论(0) 推荐(0) 编辑
摘要: const child_process = require('child_process'); // 起一个子进程 const workerProcess = child_process.exec('node right.js'); // 获取pid const pid = workerProces 阅读全文
posted @ 2021-08-10 11:01 fengyujia 阅读(859) 评论(3) 推荐(0) 编辑
摘要: 1、在中间件接收 // 文档写着编码有两种,utf-8和iso-8859-1二选一,默认为utf-8,如果要调整为iso-8859-1,extended需要为true app.use(bodyParser.text({defaultCharset:'iso-8859-1'})); app.use(b 阅读全文
posted @ 2021-08-10 10:46 fengyujia 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 十进制 转 小端十六进制 function decToHex(num) { return (num + 2 ** 32).toString(16).match(/\B../g).reverse().join ``; } console.log(decToHex(300)); console.log( 阅读全文
posted @ 2021-06-02 11:21 fengyujia 阅读(1968) 评论(0) 推荐(0) 编辑
摘要: node和python默认的rsa加密方式是不一样,要调整一下。 node代码: const fs = require('fs'); const NodeRSA = require('node-rsa'); const path = require('path').resolve(); const 阅读全文
posted @ 2021-03-26 16:16 fengyujia 阅读(474) 评论(0) 推荐(0) 编辑
摘要: npm 安装 html-pdf时 phantomjs-prebuilt编译报错 是因为依赖没有安装: sudo yum install bzip2 阅读全文
posted @ 2019-09-17 15:18 fengyujia 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 折腾了3个小时 明明数据库配置一切OK,但是存进去的表情永远是4个问号 用Python连接一切正常,所以肯定是knex问题 正确配置如下: connections: { host: 'r', user: 'XX', password: 'XXX', database: 'XX', charset: 阅读全文
posted @ 2019-09-16 15:11 fengyujia 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1、首先要知道redis是怎么eval lua 脚本的: eval "local cap=10 if(redis.call(ARGV[1],KEYS[1])+0 < cap) then return redis.call('INCR',KEYS[1]) end return cap" 1 test 阅读全文
posted @ 2019-02-27 13:38 fengyujia 阅读(677) 评论(0) 推荐(0) 编辑
摘要: 这个东西用的好少,每次要用的时候都想不起来,记一下吧 orderHistory是个数组: 方法一: db.photos.find({"orderHistory":{$elemMatch:{$ne:null}}},{orderHistory:1}) 重点: $elemMatch:{$ne:null} 阅读全文
posted @ 2017-03-22 10:08 fengyujia 阅读(4262) 评论(0) 推荐(0) 编辑
摘要: linux下这些字体直接就装好了 mac下 brew install ghostscript 这样就好了 可是Windows就是不成功,因为字体找不到,默认的目录天知道在哪。。 总之 1、网上下一个n019003l.pfp文件,放在你自己的字体文件夹里,我直接放在C:\font文件夹下了 2、找到G 阅读全文
posted @ 2017-03-15 17:25 fengyujia 阅读(994) 评论(0) 推荐(0) 编辑