摘要: 问题 :本机调试环境正常,发布上去重复请求 解决: //submit const that = this; (async () => { await that.requsetData(); })() //请求 requsetData(){ wx.request({...}) } 阅读全文
posted @ 2022-08-16 14:13 微风吹过~ 阅读(562) 评论(0) 推荐(0) 编辑
摘要: 主机路径 C:\inetpub\custerr\zh-CN\403.htm 把以下内容全部拷贝替换(403-4或403)里面所有内容,保存即可 <HTML><HEAD><TITLE>该页必须通过安全通道查看</TITLE> <META HTTP-EQUIV="Content-Type" Conten 阅读全文
posted @ 2022-07-29 16:40 微风吹过~ 阅读(33) 评论(0) 推荐(1) 编辑
摘要: CSS3新增*=、^=、$=三种匹配方式[{属性 | 属性 {*= | ^= | $=} 值}]: *=表示模糊匹配,[href*="163"]可以匹配href="163.com"、href="mail.163.com"等元素; ^=表示以指定字符开头,[href^="/"]则匹配href="/a/ 阅读全文
posted @ 2022-07-11 15:14 微风吹过~ 阅读(822) 评论(0) 推荐(0) 编辑
摘要: Bootstrap4.0中将一些图标被去除了,调整expanderExpandedClass 和expanderCollapsedClass 为Font Awesome的图标。 $.fn.bootstrapTreeTable.defaults = { code: 'code', // 选取记录返回的 阅读全文
posted @ 2022-07-07 17:55 微风吹过~ 阅读(823) 评论(0) 推荐(0) 编辑
摘要: public string ReverseA(string text) { char[] cArray = text.ToCharArray(); string reverse = String.Empty; int a = 0; for (int i = cArray.Length - 1; i 阅读全文
posted @ 2022-07-01 14:58 微风吹过~ 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 1.搭建回调服务器 可参考:https://www.cnblogs.com/zspwf/p/16381643.html进行搭建 2.编写代码 2.1接口定义 应用可以发送模板卡片消息,发送之后可再通过接口更新可回调的用户任务卡片消息的替换文案信息(仅原卡片为 按钮交互型、投票选择型、多项选择型的卡片 阅读全文
posted @ 2022-06-20 10:43 微风吹过~ 阅读(1108) 评论(0) 推荐(2) 编辑
摘要: 起因 写了一段shell脚本,在windows上压缩的文件,免密登录执行unzip后中文乱码。 解决 指定解压缩字符集 unzip -O utf-8 /path/filename.zip 阅读全文
posted @ 2022-06-17 15:41 微风吹过~ 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1.配置API接收 2.下载加密解密库 地址:https://developer.work.weixin.qq.com/devtool/introduce?id=36388,也可以复制下面的代码 2.1 WXBizMsgCrypt.cs 该方法封装了VerifyURL, DecryptMsg, En 阅读全文
posted @ 2022-06-17 14:23 微风吹过~ 阅读(1537) 评论(1) 推荐(5) 编辑
摘要: using Sys = System;using System.IO; /// <summary> /// 写入文件 /// </summary> /// <param name="Path">文件路径</param> /// <param name="content">文件内容</param> p 阅读全文
posted @ 2022-06-17 10:40 微风吹过~ 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 1.问题截图 2.测试回调模式成功 测试回调模式地址https://open.work.weixin.qq.com/wwopen/devtool/interface/combine,建立连接 => 测试回调模式 3.解决 测试回调成功,但是发现返回结果带了引号,可能是导致回调不成功原因。下面代码为错 阅读全文
posted @ 2022-06-16 13:44 微风吹过~ 阅读(1073) 评论(0) 推荐(0) 编辑