Page({ // 点击登录事件 login:function(event){ // 调用登录接口 wx.login({ success:function (res){ var code = res.code; wx.getUserInfo({ success:function(info){ var ...
分类:
微信 时间:
2020-05-23 14:52:49
阅读次数:
2294
EventBus/EventQueue 再思考 Intro 之前写过两篇文章,造轮子系列的 /`EventQueue EvenStore` 可能有点误解,有兴趣可以参考 /, 最近把 Event 相关的逻辑做了一个重构,修改 ,引入了 ,重新设计了 Event 相关的组件 重构后的 Event Ev ...
分类:
其他好文 时间:
2020-05-23 13:36:06
阅读次数:
44
(1)登陆选择 1 class Choice(wx.Frame): 2 def __init__(self, parent, id): 3 wx.Frame.__init__(self, parent, id, title = "登录选择", pos = (700, 300), size =(400 ...
分类:
其他好文 时间:
2020-05-23 11:24:49
阅读次数:
38
线上的tree报了错,connot read ptoperty 'type' of undefined 后面发现 这里有问题,没有判断条件不满足时返回为空,所以会自己返回undefined,导致报错 const loop = (data) => data.map(item => { if (item ...
分类:
其他好文 时间:
2020-05-22 17:40:00
阅读次数:
54
wheelEvent = "onwheel" in document.createElement("div") ? "wheel" : // Modern browsers support "wheel" document.onmousewheel !== undefined ? "mousewhe ...
分类:
其他好文 时间:
2020-05-22 15:32:54
阅读次数:
52
![](https://img2020.cnblogs.com/blog/1220447/202005/1220447-20200522152748206-27767828.png) ...
js冒泡和捕获是事件的两种行为,使用event.stopPropagation()起到阻止捕获和冒泡阶段中当前事件的进一步传播。使用event.preventDefault()可以取消默认事件。 1. 阻止冒泡 2. 阻止默认行为 事件注意点 1. event代表事件的状态,例如触发event对象的 ...
分类:
Web程序 时间:
2020-05-22 13:06:18
阅读次数:
58
mysql的50版本和51版本的区别:一、5.0 增加了Stored procedures、Views、Cursors、Triggers、XA transactions的支持,增加了INFORATION_SCHEMA系统数据库。 二、5.1 增加了Event scheduler,Partitioni ...
分类:
数据库 时间:
2020-05-22 12:58:05
阅读次数:
132
jinja2.exceptions.TemplateSyntaxError: Encountered unknown tag 'break' To use {% break %} and {% continue %}, you need to add the following jinja2 ext ...
分类:
其他好文 时间:
2020-05-22 12:52:24
阅读次数:
59
1.在输入input时会提示原来输入过的内容,还会出现下拉的历史记录,禁止这种情况只需在input中加入:autocomplete=“off” <input type="text" autocomplete="off" /> 2.防止退后清空的TEXT文档(可把style内容做做为类引用) <inp ...
分类:
其他好文 时间:
2020-05-22 12:36:25
阅读次数:
82