2020年2月29日

绑定银行卡的一些细节

摘要: 1、整理支持的银行卡 看自己的业务 2、验证绑定的银行卡是否有效 调用支付保验证接口 https://ccdcapi.alipay.com/validateAndCacheCardInfo.json?_input_charset=utf-8&cardNo=CAR_NO&cardBinCheck=tr 阅读全文

posted @ 2020-02-29 18:06 滚动的蛋 阅读(297) 评论(0) 推荐(0)

2020年2月28日

Maven 学习

摘要: 1、构建项目中的细节 groupId :the unique identifier of the organization or group that created the project (创建该项目的组织或者小组的唯一标识) 例子:比如我的组织叫做ant,项目名称jeepe ,那么可以将gro 阅读全文

posted @ 2020-02-28 14:08 滚动的蛋 阅读(246) 评论(0) 推荐(0)

2020年2月27日

SpringBoot 一个依赖搞定 session 共享,没有比这更简单的方案了

摘要: move to http://dwz.date/AvD 阅读全文

posted @ 2020-02-27 11:33 滚动的蛋 阅读(193) 评论(0) 推荐(0)

Java 将文件打包为zip压缩包下载

摘要: 1、添加依赖 <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.5</version> </dependency> 2、编写工具类 package com.crtw.ut 阅读全文

posted @ 2020-02-27 10:50 滚动的蛋 阅读(5929) 评论(0) 推荐(0)

2020年2月22日

pip使用报错“module object is not callable”

摘要: pip报错 TypeError: 'module' object is not callable C:\Users\滚动的蛋>pip Traceback (most recent call last): File "d:\python3.8\lib\runpy.py", line 193, in _ 阅读全文

posted @ 2020-02-22 17:09 滚动的蛋 阅读(657) 评论(0) 推荐(0)

2020年2月20日

gyp ERR! UNCAUGHT EXCEPTION(npm cnpm yarn)

摘要: 使用yarn install 报错如下: gyp info spawn args ]gyp ERR! UNCAUGHT EXCEPTIONgyp ERR! stack Error: spawn C:\Program Files (x86)\Microsoft Visual Studio\2019\C 阅读全文

posted @ 2020-02-20 20:31 滚动的蛋 阅读(4947) 评论(0) 推荐(0)

gyp ERR! find VS

摘要: yarn install 安装提示错误如下: gyp ERR! find VSgyp ERR! find VS msvs_version not set from command line or npm configgyp ERR! find VS VCINSTALLDIR not set, not 阅读全文

posted @ 2020-02-20 18:03 滚动的蛋 阅读(20607) 评论(0) 推荐(0)

gyp ERR! find Python

摘要: yarn install 安装依赖报错如下: gyp ERR! find Python gyp ERR! find Python Python is not set from command line or npm configuration gyp ERR! find Python Python 阅读全文

posted @ 2020-02-20 17:55 滚动的蛋 阅读(13396) 评论(0) 推荐(0)

2020年2月15日

MySQL 替换手机号码中间4位为星号显示

摘要: select REPLACE(tel,SUBSTR(tel,4,4),'****') tel from rwork_uinfo where comp_id = 3722 查询结果: 阅读全文

posted @ 2020-02-15 12:13 滚动的蛋 阅读(2270) 评论(0) 推荐(0)

2020年2月10日

React connect()() 双括号 --柯里化写法

摘要: 1、有人提问: 这段代码是dva的基础代码 import React from 'react'; import { connect } from 'dva'; function IndexPage() { return ( <div> this is a div </div> ); } export 阅读全文

posted @ 2020-02-10 19:35 滚动的蛋 阅读(1365) 评论(0) 推荐(2)

导航