小程序
web_cgh
努力奋斗吧!
展开
-
小程序中从任何页面跳转到登录页面
// var str = "page/addVisit/hisStore/index" ;//小程序中通过这个方法获取当前页面的路径 getCurrentPages()[0].route var a = getCurrentPages()[0].route .match(/\//g); console.info(getCurrentPages()[0].route, a.length); ...原创 2018-04-04 11:49:42 · 8251 阅读 · 2 评论 -
小程序中实现手风琴标题吸附顶部
onPageScroll: function (e) { //滚动事件 var that = this, hasMark = false; that.data.storeGroups.forEach(function (value, index, array) { console.log(value, array.length) let query = wx.cre...原创 2018-04-24 16:22:11 · 1571 阅读 · 0 评论 -
小程序中把图片保存报本地
saveImgToPhotosAlbumTap: function (e) { wx.downloadFile({ url: e.currentTarget.dataset.url, success: function (res) { console.log(res) wx.saveImageToPhotosAlbum({ ...原创 2018-05-09 10:33:07 · 3409 阅读 · 0 评论 -
小程序中上传图片到服务器
wx.uploadFile({ url: 'http://192.168.3.12:19080/staticData/api/v1/cloud/mgr/uploadFile', // url: 'http://192.168.3.253:8001/api/v1/cloud/mgr/uploadFile', filePath: tempFile...原创 2018-05-04 10:46:16 · 2012 阅读 · 0 评论 -
React中使用微信分享
import wx from 'weixin-js-sdk' const title = { myCollect: '我的收藏', goodsDetail: '产品详情', loginCpn: '登录', registerCpn: '注册新账号', forgetPasswordCpn: '找回密码', modifyPwdCpn: '修改登录密码'...原创 2019-08-21 10:58:22 · 3920 阅读 · 0 评论