码迷,mamicode.com
首页 >  
搜索关键字:happy number    ( 27882个结果
redis如何设置密码
密码设置 这里简单介绍一下redis如何设置密码redis密码设置有两种方式,一种需要重启redis服务,一种不需要重启redis服务。 首先,介绍一下需要重启redis服务的设置方式即找到redis的配置文件—redis.conf文件,然后修改里面的requirepass,这个本来是注释起来了的, ...
分类:其他好文   时间:2020-12-30 11:28:08    阅读次数:0
uni-app开发经验分享八: 实现微信APP支付的全过程详解
准备工作 申请了商户号,拿到了API秘钥。这个需要微信开发平台,相关的工作大家百度。 后面代码里用到的appid和秘钥之类需要实现申请号。 在uni-app manifest.json 配置sdk支付权限 前端代码 onload阶段获取了可用支付列表,这里我们只用到了微信支付。 requestPay ...
分类:微信   时间:2020-12-30 11:03:27    阅读次数:0
查重系统项目使用github进行管理
git的基本工作流程: 先进行项目环境的搭建,把整个项目的目录状况,以及所需要的resources文件创建好,把pom.xml写好 在小组组长的GitHub上创建一个与项目名相同的仓库 在本地IDEA上点击最上方的VCS菜单 点击上图所示,在本地创建一个Git仓库 然后右键项目,选择下图所示 这时发 ...
分类:其他好文   时间:2020-12-30 10:50:37    阅读次数:0
mybatis批量插入,批量更新
批量插入 <!--批量插入--> <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
[nginx] nginx emerg invalid number of arguments in "root" directive
系统 windows 命令 nginx -t 报错 nginx emerg invalid number of arguments in "root" directive.... 原因 root行配置最后没写分号导致,加上分号即可解决 ...
分类:其他好文   时间:2020-12-29 11:29:07    阅读次数:0
TypeScript 类型注解和类型推断
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
jenkins_pipeline后端_python_docker
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
jenkins_pipeline前端_docker
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
DRF使用超链接API实现真正RESTful
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...
分类:Windows程序   时间:2020-12-25 13:17:22    阅读次数:0
27882条   上一页 1 ... 29 30 31 32 33 ... 2789 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!