
小程序和uniapp
夹心776655
这个作者很懒,什么都没留下…
展开
-
【微信小程序】云开发之数据库增删改查
微信小程序中的增删改查 //index.js const app = getApp() let db = wx.cloud.database(); Page({ data: { }, onLoad: function(options) { }, // 添加 _add(){ let data = { name:"赵六", age:20, city:"中国" } db.collection("users").add({原创 2021-03-08 17:04:29 · 190 阅读 · 0 评论 -
【微信小程序】实现开关灯
light.wxml <!--pages/light/light.wxml--> <view wx:for="{{cons}}" class="light"> <image src ="{{item.src}}" mode="aspectFill" bindtap = "changeColor" data-name = "{{index}}"> </image> <h4> {{item.isOn}} </h4> </vie.原创 2021-03-03 10:04:10 · 3796 阅读 · 1 评论