wxml <image wx:for="{{info}}" src="{{item.pic}}" bindtap="preview" data-list="{{item.pic}}" data-src="{{item.pic}}"></image> js Page({ //图片预览 preview: ...
分类:
微信 时间:
2020-08-13 12:33:33
阅读次数:
98
使用 wx.login() 获取临时登录凭证code,并回传到开发者服务器。 // 登录 wx.login({ success: res => { // 发送 res.code 到后台换取 openId, sessionKey, unionId // console.log(res) if (res ...
分类:
微信 时间:
2020-08-10 20:58:34
阅读次数:
102
微信小程序中若要接收后台数据,如果不是要云开发的话,需要wx.request来获取后台的数据,但一般都是需要进行函数的封装, 以便实现接口的优化以及代码结构的美化. 注意:wx.request只能用来发送https网络请求。 小程序只能跟指定域名进行网络通信,故需实现来设置通信域名。 不过如果在开发 ...
分类:
微信 时间:
2020-08-10 13:21:20
阅读次数:
135
1 <text data-data="111" bindtap='copyUrl'>复制</text> 1 copyUrl(e) { 2 const data = e.currentTarget.dataset.data 3 wx.setClipboardData({ 4 data,//要复制的内容 ...
分类:
微信 时间:
2020-08-05 14:31:33
阅读次数:
139
C++经典程序《验证码检测系统》//VerificationCodeDlg.h:头文件//#pragmaonce#include"afxwin.h"//CVerificationCodeDlg对话框classCVerificationCodeDlg:publicCDialogEx{//构造public:CVerificationCodeDlg(CWnd*pParent=NULL
分类:
编程语言 时间:
2020-08-04 09:59:22
阅读次数:
76
利用wx:for对数组、对象和字符串进行列表渲染&&利用wx:for-index和wx:for-item修改数组默认下标index和默认数组元素item&&在block标签中使用wx:for对多节点结构块进行列表渲染 <!--index.wxml--> <view style='margin:20p ...
分类:
微信 时间:
2020-07-31 19:18:49
阅读次数:
118
打开CMD的方式 1. 开始+系统 + 命令提示符 Win键 + R 输入 cmd 打开控制台 管理员方式运行:选择以管理员方式运行 常用的Dos命令 1 #盘符切换 C;2 #查看当前目录下的所有文件 dir3 #切换目录 cd (change directory)4 #返回上一级 cd ..5 ...
分类:
其他好文 时间:
2020-07-29 00:47:47
阅读次数:
109
配合使用wx.showToast 和 wx.hideToast test(){ wx.showToast({ title: '加载中……', duration:5000, mask:true, icon:'loading' }) setTimeout(()=>{ console.log("hello ...
分类:
微信 时间:
2020-07-26 15:45:51
阅读次数:
149
在h5和wxapp中 生成qrcode的组件 https://ext.dcloud.net.cn/plugin?id=39 wx小程序扫二位码文档 生成链接时 computed: { ...mapState(['userinfo']), val() { let val = ''; // h5直接跳网 ...
分类:
移动开发 时间:
2020-07-26 15:36:04
阅读次数:
222
<scroll-view class="nav_left" scroll-y> <block wx:key="{{index}}" wx:for="{{navLeftItems}}"> //当前点击的项等于当前点击下标添加 class <view class="nav_left_items {{cu ...
分类:
微信 时间:
2020-07-26 01:29:05
阅读次数:
106