摘要:
# coding=utf8 import itchat,time # 自动回复 # 封装好的装饰器,当接收到的消息是Text,即文字消息 @itchat.msg_register('Text') def text_reply(msg): # 当消息不是由自己发出的时候 myUserName = itchat.get_friends(update=T... 阅读全文
摘要:
官网 :http://flask-wtf.readthedocs.io/en/stable/quickstart.html 完整代码:https://github.com/sideFlower/wanghao/tree/master/wtf 阅读全文
摘要:
watch_course_sql = """select DATE_FORMAT( FROM_UNIXTIME(a.CreateTime / 1000) , '%%Y-%%m-%%d %%T') regtime, a.username FROM bskuser a where a.UserName in (select username ... 阅读全文
摘要:
var sleep = function (time) { return new Promise(function (resolve, reject) { setTimeout(function () { //此处执行异步操作 resolve('ok'); }, time); }); }; var sta... 阅读全文
摘要:
var mysql=require("mysql"); var pool = mysql.createPool({ host: 'localhost', user: 'root', password: '123456', database: 'test1', port: 3306 }); var query = function(sql,callback)... 阅读全文
摘要:
接收前台参数 1、对于path中的变量,均可以使用req.params.xxxxx方法 2、对于get请求的?xxxx=,使用req.query.xxxxx方法 3、对于post请求中的变量,使用req.body.xxxxx方法 注:在使用req.param()的时候 会被提示 2:api文件 ex 阅读全文
摘要:
z在请求本地的时候 如果ajax的URL 前面没有http的话 就会报错 阅读全文
摘要:
@util.try_except_bskgk def added_user_handle(cur, search_time): added_user_sql = """ select userName, FROM_UNIXTIME(createTime) as createTime from bskcommon.user where da... 阅读全文
摘要:
讲 Python 装饰器前,我想先举个例子,虽有点污,但跟装饰器这个话题很贴切。 每个人都有的内裤主要功能是用来遮羞,但是到了冬天它没法为我们防风御寒,咋办?我们想到的一个办法就是把内裤改造一下,让它变得更厚更长,这样一来,它不仅有遮羞功能,还能提供保暖,不过有个问题,这个内裤被我们改造成了长裤后,虽然还有遮羞功能,但本质上它不再是一条真正的内裤了。于是聪明的人们发明长裤,在不影响内裤的前提下... 阅读全文
摘要:
在mysql中执行 : SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); 官网:https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.htmlstackoverflow : http://stackoverflow.com/... 阅读全文