微信小程序
small_animation
这个作者很懒,什么都没留下…
展开
-
uni-app中的createInnerAudioContext使用
<template> <view> <!-- 读题 --> <image class="read_img" @tap="read_btn" src="" mode="widthFix"></image> </view></template><script> var innerAudioContext = uni.createInnerAudioContext(); innerAudioCont原创 2021-05-07 11:49:59 · 2410 阅读 · 0 评论 -
wx-open-launch-weapp在uni-app中的使用技巧
wx-open-launch-weapp遇到的问题,子级样式不能设置,内容不能为空原创 2021-03-12 14:21:58 · 3119 阅读 · 1 评论 -
小程序中推送订阅消息
//app.jswx.login({ success: res => { // 发送 res.code 到后台换取 openId, sessionKey, unionId wx.request({ url: `https://api.weixin.qq.com/sns/jscode2session?appid=${appid}&secret=${secret}&js_code=${res.原创 2020-11-25 09:00:51 · 350 阅读 · 0 评论 -
微信小程序中组件及使用
1.创建项目;2.在项目根目录下(pages)打开命令行,初始化执行命令: npm init3.安装npm 执行命令: npm install4.小程序工具打开项目,菜单设置中有工具选项,其中有一个:构建npm...原创 2019-12-26 18:39:16 · 668 阅读 · 0 评论 -
小程序中weui组件使用
一. 引入下载组件 可以通过npm方式下载构建,npm包名为weui-miniprogram命令行: npm i weui-miniprogram 如果没有npm前去http://nodejs.cn官网下载也可以通过微信平台官网文档 https://developers.weixin.qq.com/miniprogram/dev/extended/weui/quick...原创 2019-12-17 19:08:20 · 1168 阅读 · 0 评论 -
匹配字符串中的数字替换成 " * "
//index.jswx.request({ url: url + 'me/supply', header: header, success: function (res) { var str = res.data; for(var i=0;i<str.length;i++){ str[i].replace("/\d{1,}/g","*"); //全局匹配数...原创 2019-09-30 18:29:22 · 1229 阅读 · 0 评论 -
小程序中input框聚焦添加下划线
<form bindsubmit="formSubmit"> <view class="mui-table-view"> <view class="mui-table-view-cell"> <view class="view-cell {{status==0 ? ...原创 2019-09-17 22:15:03 · 1074 阅读 · 0 评论 -
微信小程序底部tabBar购物车右上角增加数字
// pages/cart/cart.js;onShow: function () {var num = 1; //购物车商品数量if (num == ‘’) {wx.removeTabBarBadge({//移除tabbar右上角的文本index: 2, //tabbar下标})}else {wx.setTabBarBadge({//tabbar右上角添加文本index: ...原创 2019-09-15 22:05:26 · 5865 阅读 · 0 评论 -
小程序单选按钮更改大小,颜色等样式
选中前radio样式radio .wx-radio-input{height: 30rpx;width: 30rpx;border: 1px solid #007AFF;}选中后按钮样式radio .wx-radio-input.wx-radio-input-checked{background: green;border: 1px solid #FFF;}选中之后按钮中对勾...原创 2019-09-13 10:39:50 · 3776 阅读 · 0 评论 -
获取用户的openid方法
//app.jswx.login({success: function(res) {var that = this;var header = {‘content-type’: ‘application/x-www-form-urlencoded’,‘token’: wx.getStorageSync(‘token’) //读取cookie 拿到登录之后异步保存的token值};if...原创 2019-06-22 11:26:58 · 6564 阅读 · 0 评论