- 云端没有权限安装wget,请问有办法么?
云端没有权限安装wget,请问有办法么?
2021-05-14 - collection().watch的changeElement中dataType为‘limit’?
请问collection().watch在监控update事件时,watch的参数对象中onChange回调函数的参数中dataType蛮多次会显示'limit',然后changeEvent对象中也不会有updatedFields或removedFields,但相应的数据是被修改了的。在官方doc中dateType并没有'limit'这个值,请问'limit'代表的是什么意思啊?
2021-05-04 - 小程序端database.serverDate()的offset参数貌似不起效啊?
小程序端database.serverDate()的offset参数貌似不起效啊? 代码如下: const info = { birthday:db.serverDate({offset:86400}), age:22, hobbies:['pingpong','soccer'], env:'xuhe' };
2021-05-03 - 请问云函数不可以使用puppeteer么?
请问云函数不可以使用puppeteer么?试了很多遍,一直不行
2021-04-29 - 请问collection.watch监听时,是不是有时间间隔要求?
function update(name,age){ db.collection('birds').where({}).update({data:{name:name,age:age}}).then(console.log) } function remove(){ db.collection('birds').where({age:12}).remove().then(console.log) } function add(){ db.collection('birds').add({data:{age:12,env:'dongtai',hobbies:['sing','fly'],name:'blackbird'}}).then(console.log) } setTimeout(update,2000,'grey8Bird',12) setTimeout(add,0) 这段代码中,倒数第二句: setTimeout(update,2000,'grey8Bird',12),若间隔delay time为1秒,就出初始化那次外,watch不会再触发其他onChange事件,为2秒时,就是没update一条doc就onChange触发一次。好奇怪啊?
2021-04-19 - collectionInstance.remove只能删除一条数据?
有这样一个function: function remove(){ db.collection('birds').where({age:12}).remove().then(console.log) } 每执行一次,删除一条符合条件的doc(实际有多条符合),请问是啥意思啊?
2021-04-19 - 使用lottie动画,使用云服务器获得tempFileURL,手机端无法显示?
使用lottie动画,使用云服务器获得tempFileURL,手机端无法显示,开发工具可以正常显示。但换成私人服务器的url,手机端也可以正常显示。这是为啥呀?
2021-02-04 - lottie动画一般都是json,但实例用的js,请问怎么转换JSON为js格式啊?
lottie动画一般都是json,但实例用的js,请问怎么转换JSON为js格式啊?
2021-02-04 - 本地文件存储与缓存大小限制都是10M,是一共10M么?
本地文件存储与缓存大小限制都是10M,是一共10M么?还是分开算的?
2021-01-24 - 请问this.animate中的offset是什么作用啊?没效果啊?
请问this.animate中的offset是什么作用啊?没效果啊?
2021-01-23