上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: 1:注册GitHub账号: https://github.com/ 2:Git bash工具下载地址 https://gitforwindows.org/ 3:怎么在GitHub 新增 SSH Key 3.1.启动git bash 生成公钥:ssh-keygen -t rsa -C "xxxxxx@ 阅读全文
posted @ 2019-12-05 13:04 天天向上518 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 1:先看看一个小Demo截图效果 2:Demo已经上传至我的GiuHub仓库(国外的服务器,比较慢,需要有些耐心等待) https://github.com/zrf518/mp_demo.git 3:小程序的一些学习笔记 ==在页面的各自json文件中配置如下,可以下拉刷新的效果== "enable 阅读全文
posted @ 2019-12-05 11:17 天天向上518 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1:先看测试的效果图: 2:全部的代码 1 using System; 2 using System.Windows.Forms; 3 4 namespace WindowsForms 5 { 6 public partial class ParentForm : Form 7 { 8 public 阅读全文
posted @ 2019-12-03 10:52 天天向上518 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 1:Oauth2.0授权的流程截图 官方流程如下: 1 第一步:用户同意授权,获取code 2 第二步:通过code换取网页授权access_token 3 第三步:刷新access_token(如果需要) 4 第四步:拉取用户信息(需scope为 snsapi_userinfo) 2:引导用户进入 阅读全文
posted @ 2019-11-27 12:24 天天向上518 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: 这里就直接截图了,如下(很简单的操作): 1:Get几种请求 2:Post 3:Put 4:Delete 最后,虽然简单,代码还是给放一下(这里只是抛砖引玉的作用,自己可以根据自身的业务需要来做进一步的优化和封装): using System; using System.Collections.Ge 阅读全文
posted @ 2019-11-18 17:59 天天向上518 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: 1:IBaseDAL 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Linq.Expressions; 5 using System.Text; 6 using Syst 阅读全文
posted @ 2019-11-12 23:44 天天向上518 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 说出来都是泪,最开始都不知道从哪里开始(回头一看还是很简单的,关键是要找到入口) 特意总结出来,让有需要学习这块的朋友少走很多的弯路! 1:安装node.js会自动带上 npm的环境,下载nodejs相关的软件包傻瓜式的安装 这个步骤的自己去下载 安装 node官网: https://nodejs. 阅读全文
posted @ 2019-11-11 17:38 天天向上518 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: 个人电脑环境是这样的,虚拟机Wmware 15.0的, Linux-> Ubuntu 16.04 1:注册Microsoft密钥和源在安装.NET之前,您需要注册Microsoft密钥,注册产品存储库并安装所需的依赖项。每台机器只需执行一次。~$ wget -q https://packages.m 阅读全文
posted @ 2019-11-07 19:38 天天向上518 阅读(1145) 评论(2) 推荐(0) 编辑
摘要: // 这里只是简单的做一下记录,没有封装,作为笔记防止忘记了// contentMsg 里面是可以传入 HTML代码的 top.layer.alert(contentMsg, { area: [(_width - 5) + 'px', 'auto'], time: 20000, btn: false 阅读全文
posted @ 2019-11-06 09:28 天天向上518 阅读(1269) 评论(0) 推荐(0) 编辑
摘要: 其功能为: 将字符串如'1,2,3,4,5,6' 拼接成SQL里面的id 1:使用: select * from Student where id IN( SELECT * FROM dbo.F_SPLIT('1,2,3,4',',') ) 2:定义表值函数: USE [CRM_CN2] GO /* 阅读全文
posted @ 2019-11-06 00:10 天天向上518 阅读(709) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页