云函数调用接口查询条件只能链式调用?
在服务端调用云函数API接口
//这这样写返回的数据是正确的 const result = await Article.where(where).orderBy( 'createdAt' , 'desc' ).limit(5).get(); //这样写返回的数据排序是错误的,limit限定也不起作用
|
请问是不支持这样写么?
在服务端调用云函数API接口
//这这样写返回的数据是正确的 const result = await Article.where(where).orderBy( 'createdAt' , 'desc' ).limit(5).get(); //这样写返回的数据排序是错误的,limit限定也不起作用
|
请问是不支持这样写么?