摘要:
1、项目用到依赖注入参考: https://www.cnblogs.com/handsomeziff/p/16390502.html 2、新建ICaching接口 using Microsoft.Extensions.Caching.Distributed; namespace YYApi.Cach 阅读全文
摘要:
分辨率大于540px的时候,flexible限制为540,一般的手机显示没有问题,但对于大于540的竖屏屏幕,可能右边就会留白。我想让横屏的时候限制在540,竖屏的时候根据页面实际宽度自适应,解决方法如下: 1、安装 npm install lib-flexible --save 2、为了避免每次安 阅读全文
摘要:
dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells; dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSiz 阅读全文
摘要:
1、主要利用Audio的监听事件addEventListener,监听到声音播放结束ended,播放下一个文件 audio.addEventListener('ended', function () { console.log('音频播放结束'); }); 2、示例: var voiceList = 阅读全文
摘要:
1、navigator.getUserMedia 访问麦克风、摄像头http站点是没有权限的(除了localhost)需要浏览器设置一下 打开谷歌浏览器,地址栏输入chrome://flags/#unsafely-treat-insecure-origin-as-secure 2、重启浏览器 阅读全文
摘要:
vue发布到IIS后,需要通过二级域名访问: 1、找到config->index.js 节点assetsPublicPath,设置你要的二级域名名称 2、IIS创建站点后,在站点下添加应用程序web (跟上面同名) 3、之后就可以通过http://xxx/web 访问 PS:有项目没有config文 阅读全文
摘要:
前端实现图片一次全部下来后,在调图片显示 var imgsrc=[ "http:/XXX01.jpg", "http://XXX02.jpg", "http://XXX0.jpg" ]; var imgArr = [] for (var i = 0; i < imgsrc.length; i++){ 阅读全文
摘要:
css 属性 Overflow 可以实现溢出显示滚动条 overflow: scroll; 或 overflow-y: auto overflow-x: auto 实现div元素滚动条默认滚动到最底端 使用场景:聊天信息框 需要了解几个属性和方法: scrollHeight:元素高度 (包含滚动条隐 阅读全文
摘要:
java: /** * sha1加密 * * @param encryptText 加密文本 * @param encryptKey 加密键 * @return 加密 */ private static String hmacSHA1Encrypt(String encryptText, Strin 阅读全文
摘要:
java中的System.currentTimeMillis()返回从1970年1月1日开始的以毫秒为单位的当前时间 public static long DateTimeToTimestamp() { DateTime Jan1970 = new DateTime(1970, 1, 1, 0, 0 阅读全文