配合使用wx.showToast 和 wx.hideToast test(){ wx.showToast({ title: '加载中……', duration:5000, mask:true, icon:'loading' }) setTimeout(()=>{ console.log("hello ...
分类:
微信 时间:
2020-07-26 15:45:51
阅读次数:
149
网上找的C# WinForm全局异常捕获方法,代码如下: static class Program { /// <summary> /// 应用程序的主入口点。 /// </summary> [STAThread] static void Main() { try { //设置应用程序处理异常方式: ...
1、功能需求:由于项目业务需要一个图片预览的功能,又不想引入太多组件依赖,所以决定自己编写一套,实现了图片放大缩小、旋转、查看下一张或上一张图片功能,如图1.0截图所示。 2、外部资源:这里的icon图标采用的是 iconfont 里面的图标,自己可以自行寻找自己喜欢的图标代替,或者使用默认的图标, ...
分类:
其他好文 时间:
2020-07-26 01:01:26
阅读次数:
202
//点击事件 //上传图片 getImg() { if (this.fileList.length >= 9) { uni.showToast({ title: '上传数量上限', icon: 'none', duration: 1000 }) return } let that = this; u ...
分类:
移动开发 时间:
2020-07-23 23:25:34
阅读次数:
92
##一、Bug报告 ###在alpha阶段中。我们发现并且修改了以下bug: 在网络未连接时以及在使用中途断开网络连接时,会crash。 对新添加的回复和评论不能做到及时更新。 返回键点击过快会出现warning。 在web端删除博文后,app仍可以访问博文,此时会crash。 登录token过期, ...
分类:
其他好文 时间:
2020-07-23 16:18:08
阅读次数:
74
软件测试人员必备的英语单词(二) group 群组 group box 群组方块 分组框 guard clause 卫述句 (Refactoring, p250) 卫语句 GUI 图形介面 图形界面 hand shaking 握手协商 handle 识别码、识别号、号码牌、权柄 句柄 handler ...
分类:
其他好文 时间:
2020-07-23 15:58:22
阅读次数:
93
import logging logging.basicConfig(level=logging.INFO) s = '0'n = int(s)logging.info('n = %d' % n)print(10 / n) 这就是logging的好处,它允许你指定记录信息的级别,有debug,inf ...
分类:
编程语言 时间:
2020-07-22 11:14:08
阅读次数:
70
template <div class="each-one-in-list"> <div class="show-icon">进行中</div> <div class="show-signal"></div> <div class="main-title" title="test"> <strong ...
分类:
Web程序 时间:
2020-07-22 02:10:44
阅读次数:
211
1. 感知机原理 感知机是二分类的线性分类模型,本质上想找到一条直线或者分离超平面对数据进行线性划分 适用于线性可分的数据集,否则感知机不会收敛 假设有一个数据集$D = {(x_1, y_1), (x_2, y_2), ..., (x_N, y_N)}$,其中$x_i \in Rn$,即$x_i ...
分类:
其他好文 时间:
2020-07-21 23:19:19
阅读次数:
126
使用工具: 1.微信Web开发者工具 2.Visual Studio 2019 前端采用color UI,后端采用c# .net 过程中的几个重点点记录 1.color UI使用 下载colorUI以后 将icon.wxss、colorui.wxss拷贝至项目根目录 在app.wxss中导入文件 @ ...
分类:
微信 时间:
2020-07-21 23:05:30
阅读次数:
104