密码设置 这里简单介绍一下redis如何设置密码redis密码设置有两种方式,一种需要重启redis服务,一种不需要重启redis服务。 首先,介绍一下需要重启redis服务的设置方式即找到redis的配置文件—redis.conf文件,然后修改里面的requirepass,这个本来是注释起来了的, ...
分类:
其他好文 时间:
2020-12-30 11:28:08
阅读次数:
0
准备工作 申请了商户号,拿到了API秘钥。这个需要微信开发平台,相关的工作大家百度。 后面代码里用到的appid和秘钥之类需要实现申请号。 在uni-app manifest.json 配置sdk支付权限 前端代码 onload阶段获取了可用支付列表,这里我们只用到了微信支付。 requestPay ...
分类:
微信 时间:
2020-12-30 11:03:27
阅读次数:
0
git的基本工作流程: 先进行项目环境的搭建,把整个项目的目录状况,以及所需要的resources文件创建好,把pom.xml写好 在小组组长的GitHub上创建一个与项目名相同的仓库 在本地IDEA上点击最上方的VCS菜单 点击上图所示,在本地创建一个Git仓库 然后右键项目,选择下图所示 这时发 ...
分类:
其他好文 时间:
2020-12-30 10:50:37
阅读次数:
0
批量插入 <!--批量插入--> <insert id="batchInsert"> insert into t_ingco_trade_lithium_electric_product ( product_no, li_e_product_no, transpor_report_number, m ...
分类:
其他好文 时间:
2020-12-30 10:28:02
阅读次数:
0
系统 windows 命令 nginx -t 报错 nginx emerg invalid number of arguments in "root" directive.... 原因 root行配置最后没写分号导致,加上分号即可解决 ...
分类:
其他好文 时间:
2020-12-29 11:29:07
阅读次数:
0
type annotation 类型注解 let count: number; count = 1; type inference 类型推断 const one = 1; const two = 2; const three = one + two; const person = { name: " ...
分类:
其他好文 时间:
2020-12-29 11:26:26
阅读次数:
0
pipeline { agent any environment { imagename = "镜像命名" tag = "v${BUILD_NUMBER}" } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" git ...
分类:
编程语言 时间:
2020-12-29 11:16:14
阅读次数:
0
pipeline { agent any environment { imagename = '镜像名' tag = "v${BUILD_NUMBER}" #版本号 } stages { stage('Pull code') { steps { echo "${imagename}:${tag}" ...
分类:
其他好文 时间:
2020-12-29 11:15:03
阅读次数:
0
var window_h=function(element,height){ var element=document.getElementsByClassName(element); for(let i=0;i<element.length;i++){ element[i].style.heigh ...
分类:
其他好文 时间:
2020-12-29 11:11:45
阅读次数:
0
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...