-
告诫自己:
永远不要眼高手低,代码不是靠听课就能会应用的,必须是在练习的过程中不断地发现问题,并尝试解决问题,这样才能有机会真正的掌握,而不是走马观花,听了就是听了,听完了什么也不会敲
查看全部 -
微信似乎屏蔽了豆瓣的api,不能通过小程序访问,需要用云函数做中转。
wx:for标签可以嵌套,wx:for-items, wx:for-item,wx:for-key,组合使用,可以应对多种遍历场景。
display、position系列标签对应布局需要多加练习,几种布局方式的原理还不熟练,特别是嵌套使用时,基本依赖IDE动态调试看直观结果。
查看全部 -
电影详情页面
查看全部 -
电影列表样式
查看全部 -
wx.saveImageToPhotosAlbum不可以使用.then和.catch语句
查看全部 -
上传到云存储方法:
wx.cloud.uploadFile({ cloudPath:'根目录/**.*', filePath:'/.../**.*', success:res=>{/*res.fileID*/}, fail:err=>{}; });
查看全部 -
第三方样式库
查看全部 -
云函数调用方法:
wx.cloud.callFunction({ name: 'login'//云函数名 key: 'value'//参数名:值 ... }).then(res => { console.log(res);//返回结果对象 }).catch(err => { console.log(err);//返回错误对象 });
数据库增删改查方法:
//增加 inser:function(){ db.collection('user').add({ data:{ name:'jack', age:21 } }).then(res=>{ console.log(res); }).catch(err=>{ console.log(err); }); }
//更改 refresh:function(){ db.collection('user') .doc('25c59b425d48db870cc558187dfb9551') .update({ data: { age: 18 } }).then(res => { console.log(res); }).catch(err => { console.log(err); }); }
//查询 search:function(){ db.collection('user') .where({ name:'jerry' }) .get() .then(res=>{ console.log(res); }).catch(err=>{ console.log(err); }); }
//删除 delete:function(){ db.collection('user') .doc('face13585d48dab80cc632c118d03613') .remove() .then(res=>{ console.log(res); }).catch(err=>{ console.log(err); }); }
数据请求类方法的另外一种写法示例:
db.collection('user').add({ data:{ name: 'jerry', age: 20 }, success:res=>{ console.log(res); }, fail:err=>{ console.log(err); } });
查看全部 -
return { sum: (event.a + event.b) }
新版本下按照视频写法不返回sum:num对象,加上括号以后正常
查看全部 -
exports.main = async (event, context) => { }
event:小程序传输过来的参数l;
context:执行上下文;
查看全部 -
wx-server-sdk生产环境安装命令
$npm install --save wx-server-sdk@latest
查看全部 -
陆陆续续学完了,希望老师继续出课,也支持付费学习查看全部
-
在微信小程序注册方面,个人是无法开通微信支付和卡包功能!附近小程序仅支持政府、企业、媒体等。
主体信息一旦选择无法进行更改!
可以添加多个人员对小程序进行调试!
查看全部 -
wx.navigateTo({
url:
})//跳转页面
查看全部 -
day1查看全部
举报