修改云函数返回值,不会影响原值的吧?
云函数:return await db.collection('product').get()
小程序端:前面省略.then(res => {
res.result.data[0].price=10000
另一问,如需要再处理res,是let xx=res,再处理,还是直接把res改了。一般怎么写法好?
云函数:return await db.collection('product').get()
小程序端:前面省略.then(res => {
res.result.data[0].price=10000
另一问,如需要再处理res,是let xx=res,再处理,还是直接把res改了。一般怎么写法好?