let postQuery = LCQuery(className: "Post")
postQuery.whereKey("updatedAt", .descending)
postQuery.limit = 10
postQuery可以查询到数据,但是liveQuery 提示如下信息:
------ BEGIN LeanCloud HTTP Response
task: 2
code: 400
error: Response status code was unacceptable: 400.
data: {
"code": 1,
"error": "Invalid where."
}
------ END
是我使用方式不对吗?