微信小程序
k195514239
这个作者很懒,什么都没留下…
展开
-
实现滑块视图容器 swiper
1.实现滑块视图容器 swiper wxml: {{icon2.name}} js: wx.request({ url: '',//上线的话必须是https,没有appId的本地请原创 2017-06-15 10:02:36 · 759 阅读 · 0 评论 -
微信小程序-基本开发逻辑原理
如下图原创 2017-07-01 08:31:59 · 739 阅读 · 0 评论 -
微信小程序-获得微信用户识别码(OPENID) C#
//由于微信小程序前台禁止直接访问https://api.weixin.qq.com,所以在后台访问并返回对应的值using System.Net;using System.Text; public string get_openid() { string js_code = Reque原创 2017-07-12 07:44:55 · 2774 阅读 · 0 评论 -
微信小程序的页面跳转及前后页面传值
第一页 wxml页面 js页面 tapmine: function (e) { var id1 = e.currentTarget.id; wx.navigateTo({ url: '/page/shop/shop?id='+id1 });第二页 wxml页原创 2017-06-24 22:08:21 · 2791 阅读 · 0 评论 -
微信小程序-获得用户openid、昵称等信息的方式
var self = this; wx.login({ //登录 success: function (res) { if (res.code) { getApp().globalData.code = res.code; var code2 = ""; code2原创 2017-07-10 22:21:09 · 8750 阅读 · 1 评论