码迷,mamicode.com
首页 >  
搜索关键字:event loop    ( 13946个结果
微信小程序登录
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 再思考
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
react ice tree报错type
线上的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
Flink学习七:EventTime与Window
![](https://img2020.cnblogs.com/blog/1220447/202005/1220447-20200522152748206-27767828.png) ...
分类:Windows程序   时间:2020-05-22 15:32:24    阅读次数:69
js 阻止冒泡 阻止默认事件
js冒泡和捕获是事件的两种行为,使用event.stopPropagation()起到阻止捕获和冒泡阶段中当前事件的进一步传播。使用event.preventDefault()可以取消默认事件。 1. 阻止冒泡 2. 阻止默认行为 事件注意点 1. event代表事件的状态,例如触发event对象的 ...
分类:Web程序   时间:2020-05-22 13:06:18    阅读次数:58
MySQL 4.1/5.0/5.1/5.5/5.6/5.7各版本的主要区别
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
Flask - add jinja2 extension
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
input标签的属性
1.在输入input时会提示原来输入过的内容,还会出现下拉的历史记录,禁止这种情况只需在input中加入:autocomplete=“off” <input type="text" autocomplete="off" /> 2.防止退后清空的TEXT文档(可把style内容做做为类引用) <inp ...
分类:其他好文   时间:2020-05-22 12:36:25    阅读次数:82
13946条   上一页 1 ... 54 55 56 57 58 ... 1395 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!