摘要: 超文本传输协议HTTP协议被用于在Web浏览器和网站服务器之间传递信息,HTTP协议以明文方式发送内容,不提供任何方式的数据加密,如果攻击者截取了Web浏览器和网站服务器之间的传输报文,就可以直接读懂其中的信息,因此,HTTP协议不适合传输一些敏感信息,比如:信用卡号、密码等支付信息。 为了解决HT 阅读全文
posted @ 2022-03-24 23:12 Deb 阅读(488) 评论(0) 推荐(0)
摘要: 首先,GET和POST 请求都是属于HTTP协议的请求方法 一、GET请求特点 1、以 ? 分割 URL 和传输数据,多个参数用 & 连接:“https://www.baidu.com/s?ie=UTF-8&wd=%E7%99%BE%E5%BA%A6”; 2、根据 HTTP 规范,get请求用于信息 阅读全文
posted @ 2022-03-24 22:57 Deb 阅读(518) 评论(0) 推荐(0)
摘要: //编写SQL语句 string sql = string.Format(""); string sql2 = string.Format(""); string sql3 = string.Format(""); string sql4 = string.Format(""); string[] 阅读全文
posted @ 2022-02-24 17:29 Deb 阅读(232) 评论(0) 推荐(0)
摘要: 1、一般uni-app下拉框 <view class="uni-form-item uni-column"> <picker @change="examinationType" :range="examinationTypeArray"> <label class="">{{ examination 阅读全文
posted @ 2022-02-22 17:20 Deb 阅读(16712) 评论(0) 推荐(0)
摘要: 创建一个常量:pingyinConst.js export const pinyin = { 'a': '\u554a\u963f\u9515', 'ai': '\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7 阅读全文
posted @ 2022-02-16 16:35 Deb 阅读(1700) 评论(0) 推荐(0)
摘要: //微信好友分享 onShareAppMessage: function(e) { return this.shareData; }, //微信朋友圈分享 onShareTimeline: function(e) { return this.shareData; }, 阅读全文
posted @ 2022-01-28 16:12 Deb 阅读(17) 评论(0) 推荐(0)
摘要: 固定元素的CSS: position: absolute; z-index: 90; top: 0; width: 100%; height : 10vh; 滚动内容的CSS: position: absolute; overflow-y: scroll; bottom: 0; top: 0; ma 阅读全文
posted @ 2022-01-21 11:49 Deb 阅读(383) 评论(0) 推荐(0)
摘要: 在Web.config中增加 <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publi 阅读全文
posted @ 2022-01-11 09:56 Deb 阅读(1573) 评论(0) 推荐(0)
摘要: uni.requestPayment({ provider: 'alipay', orderInfo: payment, //微信、支付宝订单数据 【注意微信的订单信息,键值应该全部是小写,不能采用驼峰命名】 success: function(res) { if (res.errMsg == "r 阅读全文
posted @ 2022-01-05 17:51 Deb 阅读(969) 评论(0) 推荐(0)
摘要: 1、首页发件箱开通SMTP协议,参考: https://www.cnblogs.com/debstu/p/14863941.html 2、 string fjrUser = OptDataHelper.GetParams("fjrUser"); //发件人邮箱 string fjrPass = Op 阅读全文
posted @ 2021-12-28 18:14 Deb 阅读(120) 评论(0) 推荐(0)