摘要: npm i qs 首先找到axios.js,加如下代码: if (config.method 'get') { // 如果是get请求,且params是数组类型如arr=[1,2],则转换成arr=1&arr=2 config.paramsSerializer = function(params) 阅读全文
posted @ 2021-05-12 17:08 浅笑19 阅读(729) 评论(0) 推荐(0)
摘要: public static String getSha1(String str){ if(str==null||str.length()==0){ return null; } char hexDigits[] = {'0','1','2','3','4','5','6','7','8','9', 阅读全文
posted @ 2021-05-12 17:02 浅笑19 阅读(209) 评论(0) 推荐(0)
摘要: const data = new FormData(); data.append('file', this.fileInput.current.files[0]); //相当于 input:file 中的name属性 fetch('http://127.0.0.1:3001/file/upload' 阅读全文
posted @ 2021-05-12 16:57 浅笑19 阅读(690) 评论(0) 推荐(0)
摘要: /** * 获取网络图片并转为Base64编码 * * @param url * 网络图片路径 * @return base64编码 * @throws Exception */ public static String GetUrlImageToBase64(String url) throws 阅读全文
posted @ 2021-05-12 16:45 浅笑19 阅读(915) 评论(0) 推荐(0)
摘要: npm install qrcode.react --save import QRCode from 'qrcode.react'; <QRCode value={this.state.qrUrl} //value参数为生成二维码的链接 size={200} //二维码的宽高尺寸 fgColor=" 阅读全文
posted @ 2021-05-12 16:41 浅笑19 阅读(179) 评论(0) 推荐(0)
摘要: // 四舍五入 BigDecimal value = new BigDecimal(object.toString()).setScale(2,BigDecimal.ROUND_HALF_UP); // 不足两位小数补0 DecimalFormat decimalFormat = new Decim 阅读全文
posted @ 2021-05-12 16:40 浅笑19 阅读(2527) 评论(0) 推荐(0)