1.1 微信小程序和公众号
kingov
生活嘛, 最重要的是有希望 !
展开
-
微信公众号开发后台基本搭建(基于NodeJs的express框架)
1 申请公众号测试账号https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index - 申请成功之后页面会给出appID和appsecret(用于获取access_token) - 在填写接口配置信息的时候需要后台配合验证才能配置成功1.1 验证服务器输入服务器ip地址和端口号(只支持8原创 2017-10-25 16:37:44 · 8736 阅读 · 1 评论 -
微信小程序楼层跳跃
查看完整代码 https://github.com/kingov/wepy-scroll微信小程序楼层跳跃, 滚动楼层. 滚动商品时触发分类切换, 商品分类联动position: sticky;改新属性可以让一个元素在滚动到顶部是自动吸顶, 类似于fixed, 只是之前我们的做法都是使用fixed(需要检测滚动距离,消耗cpu性能), 必须要给定top right left bottom 任意一个...原创 2018-03-24 19:54:40 · 3144 阅读 · 0 评论 -
微信小程序常用代码
微信的通知服务var access_token = await wepy.request({ url: `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=小程序的appid&secret=小程序的secret`, method: 'GET', header: { 'content-typ原创 2017-12-18 17:37:37 · 2082 阅读 · 0 评论 -
.vimrc配置
tab缩进vim缩进参数解析 缩进用 tab 制表符还是空格,个人爱好问题。但是在大多项目中,习惯使用空格。关于缩进,vim中可以通过如下四个参数进行配置set tabstop=4set softtabstop=4set shiftwidth=4set noexpandtab / expandtab1解析: tabstop 表示按一个tab之后,显示出来的相当于几个空格,默认的是8个。原创 2017-12-30 19:42:01 · 434 阅读 · 0 评论 -
微信小程序通知服务实现及错误47001和41028
微信小程序报错4700147001 data format error请求的head必须是application/json不能是urlencodevar sendMsg = await wepy.request({ url: `https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=你的acce原创 2017-12-07 15:45:18 · 13696 阅读 · 0 评论 -
微信小程序框架wepy.js组件传值的bug
使用微信小程序的框架wepy.js遍历组件并且往组件里传值的时候只能传整个数据, 不能传数据里的某个值<repeat for="{{ arr }}" key="index" index="index" item="item"> //当item.name为jack的时候把item传入newProduct组件中, 不能传入item.name因为组件内接收不到为wepy.js的bug <new原创 2017-11-21 13:11:08 · 5825 阅读 · 2 评论 -
微信小程序框架wepy.js父子组件双向通信
propsfather.wpy<style lang="less"> .userinfo { display: flex; flex-direction: column; align-items: center; } .userinfo-avatar { width: 80rpx; height: 80rpx; border-radius:原创 2017-11-06 14:07:17 · 8459 阅读 · 0 评论 -
微信小程序之swiper轮播图
使用微信小程序内置组件swiper实现轮播图<swiper style="height:400rpx" indicator-dots=true autoplay=true interval=2000 duration=500 circular=true > <block wx:for="{{imgUrls}}"> <swiper-item> <image src="{{i原创 2017-11-05 20:48:02 · 16241 阅读 · 1 评论 -
微信小程序框架wepy之动态控制类名
控制类名style<style lang="less" scoped> .liBkgCor { background-color: red; }</style>template<view class="t_tab"> <li @tap.stop="changeLi({{1}})" class="{{ liColor == 1 ? 'liBkgCor':''原创 2017-11-05 20:38:29 · 5125 阅读 · 0 评论 -
微信小程序生命周期
生命周期onLaunch原创 2017-10-25 19:06:04 · 510 阅读 · 0 评论 -
wepy.js微信小程序报错'wx' is not defined no-undef
'wx' is not defined no-undef是eslint报错吧。禁用eslint或者给eslint加上全局变量wx在.eslintrc.js文件中加入以下内容globals: { wx: true },原创 2018-05-09 17:57:58 · 13293 阅读 · 1 评论