会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小宋
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
6
7
8
9
10
11
12
13
14
···
55
下一页
2020年6月5日
一、微信小程序支付
摘要: 支付:1、客户申请 2、你接收建立订单,并生成订单号3、你带着订单号去调用微信API退款:1、客户申请 2、你接收建立退款单,并生成退款单号3、你带着退款单号去调用微信API 在财务都会有 收入/支出 记录,你系统中也应该有相应的记录 一、支付代码忽略 二、小程序退款代码 1、签名报错 参考官网 在
阅读全文
posted @ 2020-06-05 09:59 反骨少年
阅读(588)
评论(0)
推荐(0)
2020年5月30日
一、ColorUI
摘要: 一、ColorUI https://www.color-ui.com 解压 1、使用方式 新建小程序,并将demo目录的colorui文件夹复制到小程序根目录 具体 使用,在index.wxml中直接使用。(没有官方文档,你只能边对照colorui案例,边做。) index.wxml <view c
阅读全文
posted @ 2020-05-30 16:38 反骨少年
阅读(3277)
评论(0)
推荐(0)
一、Consul入门
摘要: 一、基础步骤 1、Consul下载地址和配置 官网地址: https://www.consul.io/ 下载地址: https://releases.hashicorp.com/consul/1.7.2/ 或 https://www.consul.io/downloads.html 解压 配置环境变
阅读全文
posted @ 2020-05-30 00:16 反骨少年
阅读(401)
评论(0)
推荐(0)
2020年5月28日
JS循环问题
摘要: 1、continue for (var i = 0; i < 3; i++){ if(i == 2) continue; console.log(i); } 如图: 2、break for (var i = 0; i < 5; i++){ if(i == 3) break; console.log(
阅读全文
posted @ 2020-05-28 10:58 反骨少年
阅读(279)
评论(0)
推荐(0)
2020年5月22日
一、查看所有存储过程
摘要: 一、 select * from sysobjects where type='tr' 二、
阅读全文
posted @ 2020-05-22 18:38 反骨少年
阅读(1755)
评论(0)
推荐(0)
2020年5月15日
promise
摘要: 一、 /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { // Promise 是对象 不是函数 // 对象可以保存状态,函数不行 const promise = new Promise((resolve, reject)=>{ // pendi
阅读全文
posted @ 2020-05-15 10:22 反骨少年
阅读(152)
评论(0)
推荐(0)
2020年5月13日
Vue文件分离
摘要: 一、 报错图例如下:template or render function not defined vue 突然报错了,怎么解决 什么错误呢,就是加载不出来,网上看了一通,是vue版本不对,是vue-compile 包安装的不对。可自我感觉不是这个问题,为什么其他相同的组件就能加载出来。。 突然发现
阅读全文
posted @ 2020-05-13 09:40 反骨少年
阅读(566)
评论(0)
推荐(0)
2020年5月9日
vant 单图上传
摘要: 一、 <van-uploader :after-read="afterRead"> <img :src="upload1" alt class="id-img id-img-new" data-type="房产证" data-imgtype="1" /> </van-uploader> 对应 aft
阅读全文
posted @ 2020-05-09 13:09 反骨少年
阅读(473)
评论(0)
推荐(0)
2020年5月7日
4、小程序原生底部菜单
摘要: 一、 代码如下: { "pages": [ "pages/index/index", "pages/category/category", "pages/topic/topic", "pages/user/user", "pages/logs/logs" ], "window": { "backgr
阅读全文
posted @ 2020-05-07 11:06 反骨少年
阅读(357)
评论(0)
推荐(0)
三、小程序值使用vant开发
摘要: 一、构建npm包 点击 1、初始化项目 所以,我们要在终端构建 右键项目名称->在终端中打开 在终端输入 npm init 用来初始化,然后一直回车默认就Ok。之后项目中会出现 project.config.json 2、安装vant npm i vant-weapp -S --production
阅读全文
posted @ 2020-05-07 06:45 反骨少年
阅读(569)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
11
12
13
14
···
55
下一页
公告