51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

开发笔记

excel表未保存如何恢复(excel未保存的表格怎么找回)

excel表未保存如何恢复(excel未保存的表格怎么找回)

厉飞雨 阅读(90) 评论(0) 赞(6)

不知道小伙伴们有没有养成工作的时候随时按Ctrl+S键保存文档的习惯?如果没有的话,突然断电或者不小心手抖点错,Excel没保存的话...... 相信大家内心都是崩溃,不过不用担心!小编今天要给大家分享的就是如何找回没保存的Excel文件!问题不大,一切都还有救! 方法一: 1、打开管理工作簿 很显然Excel的开发者早就遇见了用户肯定会遇到这种情况,所以设置了这么一个功能来拯

Charles提示“SSL Proxying not enabled for this host: enable in Proxy Settings, SSL locations

Charles提示“SSL Proxying not enabled for this host: enable in Proxy Settings, SSL locations

厉飞雨 阅读(290) 评论(0) 赞(9)

1.手机需安装证书:浏览器打开http://charlesproxy.com/getssl 可直接安装证书,有可能有的机型需要root权限2.pc端:在Charles的工具栏上点击设置按钮,选择Proxy Settings…切换到SSL选项卡,选中Enable SSL Proxying注:如果没有设置ssl的话,那么你看到的ssl的接口中,会有一个报错:SSL Proxying

6、web3.js 安装 ethereumjs-tx

6、web3.js 安装 ethereumjs-tx

厉飞雨 阅读(148) 评论(0) 赞(6)

web3.js 安装 ethereumjs-tx根据区块链工作原理,创建交易时,会签署交易然后向网络广播。为了签署交易,我们使用JavaScript库ethereumjs-tx。安装ethereumjs-tx库:$ npm install ethereumjs-tx使用这个库的目的是,可以在本地签署交易。要在本地签署交易,可...

23、web3.js underscore JS库

23、web3.js underscore JS库

厉飞雨 阅读(209) 评论(0) 赞(6)

web3.js underscore JS库Web3.js附带了underscoreJS库,可用于操作JavaScript数组或对象。示例app.jsconst Web3 = require('web3') const web3 = new...

22、web3.js sha3、keccack256、randomHex

22、web3.js sha3、keccack256、randomHex

厉飞雨 阅读(155) 评论(0) 赞(4)

web3.js sha3、keccack256、randomHexweb3.utils.sha3 – sha256哈希函数web3.utils.keccak256 – keccak256哈希函数web3.utils.randomHex – 生成十六进制随机数示例app.jsconst Web3 = require(&...

21、web3.js 查询平均 gas 价格

21、web3.js 查询平均 gas 价格

厉飞雨 阅读(152) 评论(0) 赞(6)

web3.js 查询平均 gas 价格查询平均gas价格,可以使用web3.eth.getGasPrice()函数。示例app.jsconst Web3 = require('web3') const web3 = new&nbsp...

20、web3.js 查询区块中的交易

20、web3.js 查询区块中的交易

厉飞雨 阅读(118) 评论(0) 赞(6)

web3.js 查询区块中的交易要查询某个区块中的指定交易信息,可以使用web3.eth.getTransactionFromBlock(txHash, blockNum)函数。示例app.jsconst Web3 = require('web3') const web3&a...

19、web3.js 查询指定区块

19、web3.js 查询指定区块

厉飞雨 阅读(127) 评论(0) 赞(7)

web3.js 查询指定区块要查询指定区块,可以使用web3.eth.getBlock()函数,可以指定区块的序号或哈希值。示例app.jsconst Web3 = require('web3') const web3 = new&...

18、web3.js 查询最新区块

18、web3.js 查询最新区块

厉飞雨 阅读(173) 评论(0) 赞(6)

web3.js 查询最新区块要查询最新区块,可以使用web3.eth.getBlock('latest')函数。代码如下:app.jsconst Web3 = require('web3') const web3 =&...

17、web3.js 查询最新区块号

17、web3.js 查询最新区块号

厉飞雨 阅读(134) 评论(0) 赞(6)

web3.js 查询最新区块号要查询最新区块号,可以使用web3.eth.getBlockNumber()函数。代码如下:app.jsconst Web3 = require('web3') const web3 = new&nbs...