摘要: 安装 创建SHA256密码 echo -n 123456 | openssl dgst -sha256 (stdin)= 8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92 尝试用Navicat连接 (失败) 默认连接提示 阅读全文
posted @ 2022-11-25 09:46 yesicoo 阅读(627) 评论(0) 推荐(0) 编辑
摘要: export DOTNET_ROOT=$(dirname $(readlink $(command -v dotnet))) 阅读全文
posted @ 2022-09-29 09:44 yesicoo 阅读(74) 评论(0) 推荐(0) 编辑
摘要: var time = DateTime.ParseExact("Thu Jul 21 17:20:01 CST 2022","ddd MMM dd HH:mm:ss 'CST' yyyy", CultureInfo.GetCultureInfo("en-us")); 阅读全文
posted @ 2022-08-01 11:29 yesicoo 阅读(24) 评论(0) 推荐(0) 编辑
摘要: CSS 布局技巧 https://segmentfault.com/a/1190000039372270 阅读全文
posted @ 2021-03-16 00:36 yesicoo 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1,plus.payment.getChannels(function(channels) {}) //获取所有支付方式 2,let iap = channels.find(x => x.id == 'appleiap'); //筛选ios内购 iap 3,iap.requestOrder([内购商 阅读全文
posted @ 2021-03-12 00:57 yesicoo 阅读(655) 评论(0) 推荐(0) 编辑
摘要: var _callbacks = new Map(); function UploadImg(callback, id = null) { if (IsNOE(id)) { id = "_upload_img_" + randomString(8); _callbacks.set(id, callb 阅读全文
posted @ 2021-03-10 11:59 yesicoo 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 1,父组件调用子组件方法: <xqSearchInput ref="xqSearch" placeholder="车牌/手机号/卡号" :showscan="false" @input="searchInput"></xqSearchInput> this.$refs.xqSearch.setVal 阅读全文
posted @ 2020-02-23 12:05 yesicoo 阅读(223) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/a/58126955 简单来说 需要在nuget上安装Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation组件,然后再在Service中注册下 services.AddRazorPages().AddR 阅读全文
posted @ 2019-12-08 22:42 yesicoo 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 封装了一个方法,用于处理一些需要判断是否执行超时了的操作 调用: 阅读全文
posted @ 2019-11-03 17:48 yesicoo 阅读(4327) 评论(0) 推荐(1) 编辑
摘要: span{ display:flex; justify-content:left; align-items:center; height:100%; width:100%; } 阅读全文
posted @ 2019-09-23 14:51 yesicoo 阅读(1912) 评论(1) 推荐(1) 编辑