1.Taro 提供了 Taro.Events 来实现消息机制,使用时需要实例化它 import Taro, { Events } from '@tarojs/taro' const events = new Events() 2.事件监听 // 监听一个事件,接受参数 events.on('even ...
分类:
其他好文 时间:
2020-07-22 11:44:45
阅读次数:
147
第一版:POI + 逐行查询校对 + 逐行插入 这个版本是最古老的版本,采用原生 POI,手动将 Excel 中的行映射成 ArrayList 对象,然后存储到 List<ArrayList> ,代码执行的步骤如下: 手动读取 Excel 成 List<ArrayList> 循环遍历,在循环中进行以 ...
分类:
其他好文 时间:
2020-07-22 11:31:37
阅读次数:
81
##函数节流(throttle) 函数节流:在指定的间隔时间内只执行一次 有个需要频繁触发函数,出于优化性能角度,在规定时间内,只让函数触发的第一次生效,后面不生效。 比如下面的例子,在不加函数节流的时候,每当滚动条滚动的时候都会触发一次,造成大量的性能浪费 // 未添加节流函数 document. ...
分类:
其他好文 时间:
2020-07-22 02:10:15
阅读次数:
76
废话不多说, 直接上代码: json文件: 1 { 2 "squadName" : "Super Hero Squad", 3 "homeTown" : "Metro City", 4 "formed" : 2016, 5 "secretBase" : "Super tower", 6 "activ ...
分类:
Web程序 时间:
2020-07-21 23:15:58
阅读次数:
127
NLP——新闻文本处理:TASK1 赛题理解与nlp初识 1.数据读取 在竞赛主页下载好数据集利用pandas打开: #coding=utf-8 import pandas as pd #my_font = font_manager.FontProperties(fname="C:\Windows\ ...
分类:
其他好文 时间:
2020-07-21 23:13:12
阅读次数:
112
1,vue中安装wangEditor 使用的npm安装 npm install wangeditor --save 2,创建公用组件 在components中创建wangEnduit文件夹 组件内容为: <template lang="html"> <div class="editor"> <div ...
分类:
其他好文 时间:
2020-07-21 21:57:00
阅读次数:
128
Spring Boot Actuator可以帮助你监控和管理Spring Boot应用, 比如健康检查、审计、统计和HTTP追踪等。所有的这些特性可以通过JMX或者HTTP endpoints来获得。 Actuator同时还可以与外部应用监控系统整合,比如 Prometheus, Graphite, ...
分类:
编程语言 时间:
2020-07-21 14:12:50
阅读次数:
74
PaperRead - Fast Software for Box Intersections Zomorodian, Afra, Edelsbrunner,等. Fast Software for Box Intersections.[J]. International Journal of Co ...
分类:
其他好文 时间:
2020-07-20 15:40:31
阅读次数:
66
CocosCreator使用的是box2d.js物理引擎,碰撞平面法线方向必须取反 private onBeginContact(contact:cc.PhysicsContact,selfCollider:cc.PhysicsCollider,otherCollider:cc.PhysicsCol ...
分类:
其他好文 时间:
2020-07-20 15:29:08
阅读次数:
115
1 from selenium import webdriver 2 import time 3 import xlwt 4 5 def get_test_result(): 6 ''' 7 获取测试报告网页中的结果数据 8 :return: 9 ''' 10 driver = webdriver. ...
分类:
Web程序 时间:
2020-07-20 13:33:13
阅读次数:
146