微信小程序
qq_34802511
这个作者很懒,什么都没留下…
展开
-
微信小程序开发者文档教程,从入门到精通 (附超过100个完整项目源代码、文档)
微信小程序开发者文档官网地址https://mp.weixin.qq.com/debug/wxadoc/dev/index.html 微信小程序教程资料和开发工具大全,文档、代码、例子、工具 http://download.csdn.net/detail/wyx100/9640808微信小程序实例大全下载http://download.csdn.net/detai...转载 2018-09-26 17:50:04 · 1969 阅读 · 0 评论 -
小程序---事件处理
https://blog.csdn.net/qishuixian/article/details/79005500https://blog.csdn.net/bluecard2008/article/details/80888444原创 2019-05-18 11:19:49 · 183 阅读 · 0 评论 -
小程序---上传图片与压缩图片
上传图片https://www.cnblogs.com/LCH-M/p/9420482.htmlhttps://blog.csdn.net/qq_40866897/article/details/86155813七牛云:https://blog.csdn.net/weixin_34273479/article/details/88620530不错:https://blog.csdn...原创 2019-05-18 11:21:39 · 667 阅读 · 0 评论 -
小程序---生命周期
https://blog.csdn.net/code_xiaolu/article/details/53994779https://www.jianshu.com/p/3f43eaa83bbdhttps://www.w3cschool.cn/weixinapp/weixinapp-qa.html原创 2019-05-18 14:30:11 · 149 阅读 · 0 评论 -
小程序---常见报错与踩过的坑
1.uploadFile:fail Connection refusedhttps://blog.csdn.net/weixin_39895109/article/details/81097155https://blog.csdn.net/weixin_36065510/article/details/591904032.【小程序】提示request请求不在合法域名列表中的解决方法(r...原创 2019-05-23 15:31:37 · 597 阅读 · 0 评论 -
微信小程序—微信支付
https://developers.weixin.qq.com/community/develop/article/doc/000ceae09288489c0e9886e6c59c13https://blog.csdn.net/qishubiao/article/details/80804052原创 2019-05-18 17:15:28 · 147 阅读 · 0 评论 -
小程序---60秒倒计时插件
https://developers.weixin.qq.com/community/develop/article/doc/0002e6b8178ca8faaa888469e51413https://developers.weixin.qq.com/community/develop/article/doc/000ae86df38a30479e88b776751813原创 2019-05-18 17:19:22 · 623 阅读 · 0 评论 -
小程序---地图学习
https://developers.weixin.qq.com/community/develop/article/doc/0004ccb3d644e8df5e88622795f413开放社区:https://developers.weixin.qq.com/community/develop?page=2&tag=#post-list上线流程:https://blog.c...原创 2019-05-18 17:22:09 · 197 阅读 · 0 评论 -
小程序---个人中心
https://blog.csdn.net/zhenghhgz/article/details/81352863http://www.pianshen.com/article/665614377/https://blog.csdn.net/u012927188/article/details/76684951http://www.lanrenmb.com/xiaochengxujiao...原创 2019-05-23 17:14:23 · 1385 阅读 · 0 评论 -
微信小程序—wx:for里面的item,index的用法
Page({ data: { arry: [ { age: 6, name: 'liu', like: ["apple","orange"] }, { age: 8, name: 'hai', like: ["egg"] }, { age: 9, name: 'don', like: ["eat","drink"] }, ], },...原创 2019-05-29 11:35:22 · 20355 阅读 · 0 评论 -
微信小程序—swiper(滑块视图容器)
Page({ data: { imgUrls: [ '../../imgs/001.jpg', '../../imgs/002.jpg', '../../imgs/003.jpg', ], indicatorDots: true, autoplay: t...原创 2019-06-11 16:25:00 · 356 阅读 · 0 评论 -
微信小程序—progress(进度条)
<progress class="progress" percent="{{percent}}" show-info="{{isSi}}" stroke-width="{{sw}}" activeColor="{{pc}}" backgroundColor="{{pbc}}" active="{{isActive}}" active-mode="forwards"></pro...原创 2019-06-11 16:35:21 · 5183 阅读 · 0 评论 -
微信小程序—contact-button(客服)
https://blog.csdn.net/Afanbaby/article/details/78796968https://blog.csdn.net/cailin21c/article/details/82856615原创 2019-06-11 17:20:11 · 1493 阅读 · 0 评论 -
微信小程序—map(地图)
https://blog.csdn.net/Afanbaby/article/details/78774702原创 2019-06-11 17:21:54 · 166 阅读 · 0 评论 -
微信小程序—刷脸实名认证
阿里云认证:https://docs.alipay.com/mini/introduce/alipay-face-verify企业资格认证:https://developers.weixin.qq.com/community/business/doc/000442d352c1202bd498ecb105c00dhttps://developers.weixin.qq.com/communi...原创 2019-07-31 10:56:44 · 7526 阅读 · 0 评论 -
微信小程序—背景音乐循环播放(后台使用的能力)
https://blog.csdn.net/w_ssny/article/details/84333622https://www.jianshu.com/p/1f143a98663ehttp://html51.com/info-40159-1/原创 2019-08-06 17:48:39 · 7487 阅读 · 0 评论 -
微信小程序—页面跳转以及跳转传参
onLoad: function (options) { // 保留当前页面,跳转到应用内的某个页面 wx.navigateTo({ url: '../login/login?id=68&name=liu', url: '../login/login?phone=' + that.data.phone + "&address=" +...原创 2019-05-18 11:19:15 · 220 阅读 · 0 评论 -
小程序---本地缓存(同步缓存,异步缓存)存储数据
https://blog.csdn.net/qq_28129039/article/details/79203647https://blog.csdn.net/yelin042/article/details/79111659https://blog.csdn.net/milli236/article/details/79884021https://blog.csdn.net/weixin...原创 2019-05-18 11:18:43 · 510 阅读 · 0 评论 -
微信小程序开发教程--从零开始
从零开始小程序今天一不小心拿到了小程序的内测资格,为了不辜负微信团队的信任,我决定十一奋斗一把!不过话说我可是一个Android工程师啊!所以就让我们从零开始!所以本文非常适合非前端工程师学习!哈哈!都说小程序出来前端会抢移动端饭碗,但是据我所知现在好多学习的都是移动开发工程师,谁抢谁的还不一定呢!PS:表问我怎么拿到小程序内测资格的,有种东西叫内部资源! 准备工作 IDE搭建...转载 2018-09-26 18:38:03 · 5073 阅读 · 1 评论 -
微信小程序入门教程+案例demo
微信小程序入门教程+案例demo尊重原创,转载请注明出处:原文查看惊喜更多 http://blog.csdn.net/qq137722697首先摆在好姿态,——微信小程序开发也就那么回事。你只需要一点点css(真的只要一点点)的基础就可以了。认清微信小程序开发其实,我觉得小程序就是将微信官方提供20+个基础组件(目前有26个)进行排列组合,然后加上一些css样式,对用户的操...转载 2018-09-26 19:15:00 · 453 阅读 · 1 评论 -
小程序知识点
微信小程序 页面跳转和数据传递实例: 附加:在Android中,我们Activity和Fragment都有栈的概念在里面,微信小程序页面也有栈的概念在里面。 微信小程序页面跳转有四种方式:可以借鉴:https://blog.csdn.net/weixin_42460570/article/category/8256496/1?...原创 2018-10-22 17:39:00 · 281 阅读 · 0 评论 -
页面之间相互传递数据方法
通过navigateTo,reLaunch在跳转地址后面加后缀<script>// 点击跳转indexTargetLogs1: function () { wx.reLaunch({ url: '../logs/logs?logsView=1', })}indexTargetLogs2: function (e) { wx.reLa...原创 2019-01-17 10:30:04 · 472 阅读 · 0 评论 -
小程序---回调函数写法
例如:index.js需要数据:<script> let app = getApp(); //方法名自己定义 app.getInfoCallback = res => { console.log('查看得到的数据:', res) }</script>app.js:<script> i...原创 2019-01-19 11:12:43 · 4085 阅读 · 0 评论 -
小程序---省市区的三级联动
https://www.cnblogs.com/zwp06/p/9217212.htmlhttp://www.mamicode.com/info-detail-2366717.htmlhttps://www.cnblogs.com/wjf0/p/9283177.htmlhttps://www.jianshu.com/p/3e6a78ff8fc0https://segmentfault....原创 2019-05-20 12:20:26 · 628 阅读 · 0 评论 -
小程序---开发流程
1.注册微信小程序账号:https://mp.weixin.qq.com/wxopen/waregister?action=step12.获取APPIDAPPID在哪里获取呢,根据第一步注册的小程序帐号,然后登陆上,找到左侧“开发”,点击“开发设置”,就看到APPID啦,把APPID复制下来,留作备用。3.绑定开发者如果在第一步注册小程序帐号的时候,你不是管理员,那么这个时候,...原创 2019-05-15 11:02:10 · 357 阅读 · 0 评论 -
小程序---下拉框选项select option写法
www.php.cn/xiaochengxu-412858.htmlhttp://www.php.cn/xiaochengxu-407711.htmlhttps://www.jianshu.com/p/1d62a193c320https://blog.csdn.net/qq_41629498/article/details/81586722https://blog.csdn.net/h...原创 2019-05-20 16:42:57 · 1297 阅读 · 0 评论 -
小程序---调用外部API实现特殊功能
前言:微信小程序不存在ajax,那么它是如何实现数据请求功能的呢?微在信中提供了API的调用wx.request(OBJECT),这个是很不错的。三网手机号码实名认证:1.三网手机实名认证,运营商三要素验证,三网手机实名制认证,三网手机号实名认证,三网运营商,运营商三要素核验,2.手机号三元素实名认证,通过手机号、真实姓名、身份证号来校验三者是否一致。3.目前只支持移动,联通、电...原创 2019-05-15 18:07:12 · 1049 阅读 · 0 评论 -
小程序---根目录下的文件组成
app.json配置文件:https://blog.csdn.net/qq_40147863/article/details/82718089https://blog.csdn.net/msllws/article/category/8066809https://blog.csdn.net/msllws/article/details/82801034https://blo...原创 2019-05-15 18:40:28 · 438 阅读 · 0 评论 -
小程序---基础控件的使用
视图容器<scroll-view scroll-y="true" style="height: 300px"> <view style="background: red; width: 100px; height: 100px" ></view> <view style="background: green; width: 100px...原创 2019-05-15 18:41:10 · 173 阅读 · 0 评论 -
小程序---消息提示框
https://blog.csdn.net/qq_39702981/article/details/86707520https://blog.csdn.net/henryhu712/article/details/80335351https://blog.csdn.net/JackJia2015/article/details/86541089原创 2019-05-24 14:09:24 · 924 阅读 · 0 评论 -
微信小程序—wx:if elif else的用法(搭配view、block)
<view wx:if="{{boolean==true}}"> <view class="bg_black"></view></view><view wx:elif="{{boolean==false}}"> <view class="bg_red"></view></view>...原创 2019-05-25 18:31:10 · 1606 阅读 · 0 评论 -
小程序---获取当前的IP地址的方法
var that = this;wx.request({ url: 'http://ip-api.com/json', success: function (e) { console.log("返回数据===>",e.data); that.setData({ motto: e.data, }) ...原创 2019-05-22 11:00:32 · 9112 阅读 · 4 评论 -
小程序---小程序的生命周期和页面的生命周期
https://blog.csdn.net/qq_35324453/article/details/81608292https://blog.csdn.net/u013003974/article/details/72466655https://blog.csdn.net/y594004859/article/details/86488795小程序实现视图向js传递参数https:...原创 2019-05-18 11:18:13 · 164 阅读 · 0 评论 -
微信小程序—微信小程序快速移植支付宝小程序
https://www.cnblogs.com/xyyt/p/9895458.htmlhttps://jingyan.baidu.com/article/a948d651c3ae330a2ccd2e77.htmlhttps://blog.csdn.net/qq_40644829/article/details/85067229原创 2019-09-02 15:05:43 · 1033 阅读 · 0 评论