[项目地址:https://gitee.com/fan-caixia/tianditumap[https://gitee.com/fan-caixia/tianditumap...
[项目地址:https://gitee.com/fan-caixia/tianditumap[https://gitee.com/fan-caixia/tianditumap...
@58c2bcd777ff 这个确实没做
微信小程序日期选择组件之DateTimePickergithub项目地址: https://github.com/fancaixia/DateTimePicker DateTimePicker 微信小程序日期选择 [年,月,...
评论插件基于jquery 的评论小插件 github项目地址:https://github.com/fancaixia/jquery-comment 案例思路: [后台建立两个表]...
搜索框输入时触发 searchList(ev) {
let e = ev.detail;
console.log(e.detail.value,'模糊查询字段')
this.setData({
searchstr: e.detail.value
})
},
你自己添加个确定按钮,绑定事件,然后获取 this.data.searchstr 就可以啊
微信小程序搜索框组件之SearchBargithub项目地址:https://github.com/fancaixia/SearchBar 搜索框样式 searchBox/index.wxml searchBox/...
@Monstereat 没有啊
微信小程序中word, doc等文件上传与下载文件上传两种方式 上传当前小程序中下载过的文件 利用wx.chooseMessageFile 调用微信会话页面 选择要上传的文件 github项目地址:https://gi...
😄
评论插件基于jquery 的评论小插件 github项目地址:https://github.com/fancaixia/jquery-comment 案例思路: [后台建立两个表]...
你是说演示案例的gif吗,使用手机录制功能录制一段视频,然后用视频转gif软件转一下就行
微信小程序中word, doc等文件上传与下载文件上传两种方式 上传当前小程序中下载过的文件 利用wx.chooseMessageFile 调用微信会话页面 选择要上传的文件 github项目地址:https://gi...
此处_that.data = this.data 即Page 中data ,然后let {upfilelist} = _that.data; 使用es6的结构方法等于 let upfilelist = _that.data.upfilelist
微信小程序中word, doc等文件上传与下载文件上传两种方式 上传当前小程序中下载过的文件 利用wx.chooseMessageFile 调用微信会话页面 选择要上传的文件 github项目地址:https://gi...
choosefilefun(){
let _that = this;
wx.chooseMessageFile({
count: 10,
type: 'file',
success(res) {
// console.log(res, " :res")
const tempFiles = res.tempFiles
let {upfilelist} = _that.data;
let newupfilelist = upfilelist.concat(tempFiles)
_that.setData({
upfilelist: newupfilelist,
})
}
})
},
上面这段是我案例中的代码,因为wx.chooseMessageFile中的success函数改变了this指向 所以使用_that保存this指向,
微信小程序中word, doc等文件上传与下载文件上传两种方式 上传当前小程序中下载过的文件 利用wx.chooseMessageFile 调用微信会话页面 选择要上传的文件 github项目地址:https://gi...
你好,项目已更新,案例思路写在文章中了,我是做前端的,后台数据结构这块有哪不合理的欢迎指正
评论插件基于jquery 的评论小插件 github项目地址:https://github.com/fancaixia/jquery-comment 案例思路: [后台建立两个表]...
项目地址:https://github.com/fancaixia/wx_webSocket 案例思路: [1] 用户进入聊天室 前台向后台发送连接请求并携带用户id 后台 ...