码迷,mamicode.com
首页 >  
搜索关键字:users    ( 8928个结果
轮询与长轮询
一、轮询 前端通过定时器每隔多少秒钟发送一次请求。 投票示例: app.py from flask import Flask,render_template,request,jsonify app = Flask(__name__) USERS = { '1':{'name':'贝贝','count ...
分类:其他好文   时间:2020-07-10 16:52:19    阅读次数:88
select top 1关联查父级名称
SELECT users.UserID AS Id, users.UserName, users.TrueName, users.Phone, users.Email, STUFF( ( SELECT ',' + roles.Description FROM Accounts_UserRoles u ...
分类:其他好文   时间:2020-07-10 15:11:25    阅读次数:65
React.memo is not a function
最近在运行项目的时候报了一个React.memo is not a function, 报错类似如下 D:\myCode\myProject\node_modules\testPackage\index.js:22 })(React.momo(testPackage)); TypeError: Re ...
分类:其他好文   时间:2020-07-10 09:27:46    阅读次数:52
Windows-bat-loop for restart exe
Windows-bat-loop for restart exe July 10, 2020 2:09 AM 周期重启某个指定的程序 @echo off :start choice /t 10 /d y /n >nul cd C:\Users\Administrator\Desktop\XXXX.e ...
分类:Windows程序   时间:2020-07-10 09:20:47    阅读次数:79
plsql 恢复文件
当编辑 sql语句 或存储过程时 关机或进程被中断 导致 SQL语句找不到了 没保存 1. 执行过的情况 ctrl+e sql执行历史记录 2.再次打开plsql 恢复文件检测 可以恢复 找到恢复文件 C:\Users\admin\AppData\Roaming\PLSQL Developer\PL ...
分类:数据库   时间:2020-07-09 01:04:19    阅读次数:118
gitlab-ci部署实现持续集成(centos7)
一、gitlab安装 1. 环境准备 // selinux和 firewall 关闭 $ setenforce 0 $ sed -i "/^SELINUX/s/enforcing/disabled/" /etc/selinux/config $ systemctl stop firewalld $ ...
分类:其他好文   时间:2020-07-08 23:05:44    阅读次数:100
在VS中,每次添加Class类都需要加上Public(教你怎么样设置类模板头部)
首先看图(是不是每次写代码,需要将该类设为Public的时候,每次都要手动添加,现在教你每次都会自动添加。这也是我们公司的写代码的一种规范) 1.首先找到你的V【isualStudio】软件的安装目录,然后找到这个目录。(博主安装在了D盘) 这是博主的路径(安装的时候我是自定义路径):D:\Ruan ...
分类:其他好文   时间:2020-07-08 19:39:00    阅读次数:92
NLog.Targets.ElasticSearch
The Elasticsearch target works best with the BufferingWrapper target applied. By default the target assumes an Elasticsearch node is running on the lo ...
分类:其他好文   时间:2020-07-08 15:30:48    阅读次数:58
python-关于OS模块的一些简单操作
import os #导入OS模块path1=r'C:\Users\chenyu\Desktop\Test' #加r不会进行转义os.mkdir(path1) #创建C:\Users\chenyu\Desktop\Testos.mkdir(r'G:\Test') #创建G:\Test目录os.rmd ...
分类:编程语言   时间:2020-07-08 15:27:07    阅读次数:55
转(以作记录):cmd命令行---进行Windows服务操作
1、安装服务 sc create 服务名 binPath= "C:\Users\Administrator\Desktop\win32srvDemo\win32srvdemo\Debug\win32srvDemo.exe" 注:服务名:指创建的Windows服务名 binPath:指Windows服 ...
分类:Windows程序   时间:2020-07-08 14:55:26    阅读次数:102
8928条   上一页 1 ... 27 28 29 30 31 ... 893 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!