日常食用的水果和食物有冷热性质之分,比如羊肉是温热性的,适合冬天食用,请大家列出至少五种食物或者水果,说说它们的性质。
查看答案
编程题:请编写一个用户登录页面,要求输入用户名和密码进行登录。只需写出WXML的代码。
补全程序:下面是实现发送弹幕功能的js代码,请在(_____)处补全代码。Page({onReady: function (res) {this.videoContext = wx.createVideoContext('myVideo')},inputValue: '',data: {src: '',danmuList:[{text: '第 1s 出现的弹幕',color: '#ff0000',time: 1},{text: '第 3s 出现的弹幕',color: '#ff00ff',time: 3}]},bindInputBlur: function (e) {this.inputValue = (________)},bindSendDanmu: function () {this.videoContext.sendDanmu({text: (_______)})},videoErrorCallback: function (e) {console.log('视频错误信息:')console.log(e.detail.errMsg)}})
补全程序:请在(___)位置处补全程序,实现在counters集合中添加两个字段count和name,count对应的值为2,name对应的值为小刚。onAdd: function () {const db = wx.cloud.database()db.collection(________).add({data: {(________),(________)},success: res => {wx.showToast({title: '新增记录成功',})console.log('[数据库] [新增记录] 成功')},fail: err => {wx.showToast({icon: 'none',title: '新增记录失败'})console.error('[数据库] [新增记录] 失败:', err)}})}