摘要: 先描述下业务场景:业务依托公众号开展,另需通过推送模板消息通知用户;但总有漏网之鱼,有些用户越过公众号直接操作,不关注公众号也就收不到消息...... 查了公众号开发文档,获取用户基本信息(https://developers.weixin.qq.com/doc/offiaccount/User_M 阅读全文
posted @ 2022-08-16 10:09 🍋.レモン 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1、登录微信公众平台 https://mp.weixin.qq.com/ 2、登录成功后鼠标右键查看网页源代码,找到window.wx.uin值 3、对取到的值进行Base64编码 https://base64.us/ 4、生成跳转链接https://mp.weixin.qq.com/mp/prof 阅读全文
posted @ 2022-07-22 17:20 🍋.レモン 阅读(2547) 评论(0) 推荐(0) 编辑
摘要: 1、给表添加字段 alter table 表名 add 字段名 int not null default 0; 2、删除表中某个字段 alter table 表名 drop column 字段名; 3、若表原字段有约束 alter table 表名 drop constraint 主/外键ID; 阅读全文
posted @ 2021-12-23 10:22 🍋.レモン 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 1、建立函数 Create Function [dbo].[GetAge](@BirthDay datetime)Returns varchar(20)AsBegin DECLARE @year int=0;DECLARE @month int=0;DECLARE @day int=0;DECLAR 阅读全文
posted @ 2021-08-18 15:59 🍋.レモン 阅读(3528) 评论(0) 推荐(0) 编辑
摘要: public List<string> GetFiles(string path) { List<string> resultFiles = new List<string>(); if (System.IO.Directory.Exists(path)) { DirectoryInfo dir = 阅读全文
posted @ 2021-04-25 11:25 🍋.レモン 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 当一个微信公众号授权开发后,需要在公众号配置好以下几项才能正常使用。 一、公众号设置-功能设置 下载验证文件,放置在服务器对应发布文件根目录下,并添加至JS接口安全域名、网页授权域名;【若该文件夹是经过nginx转发得到的,则域名具体到转发文件夹下】 二、基本配置 IP白名单添加服务器域名;令牌to 阅读全文
posted @ 2021-04-22 17:06 🍋.レモン 阅读(1436) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/cnyg/?id=1 var id= request('id'); function request(paras) { var url = location.href; var paraString = url.substring(url.indexO 阅读全文
posted @ 2020-06-22 14:57 🍋.レモン 阅读(133) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 去除特殊字符 /// </summary> /// <param name="str">待处理的字符串</param> /// <returns></returns> public static string RemoveSpecialChar(string st 阅读全文
posted @ 2020-04-30 14:50 🍋.レモン 阅读(157) 评论(0) 推荐(0) 编辑
摘要: (1)配置文件<webServices> <jsonSerialization maxJsonLength="1024000000" /></webServices> 如果还是没有返回全部数据,修改返回格式(2)后台接口返回格式 //return Json(data, JsonRequestBeha 阅读全文
posted @ 2020-04-11 09:48 🍋.レモン 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 1、视频自动播放问题 <video poster="images/def.png" width="100%" controls="controls" id="video" autoplay webkit-playsinline="true" playsinline="true"> <source s 阅读全文
posted @ 2020-03-28 11:07 🍋.レモン 阅读(460) 评论(0) 推荐(0) 编辑