String url = "https://api.weixin.qq.com/tcb/databasequery?access_token="+accessToken;
String qu = "\"db.collection(\'history\').where({age:15}).get()\""
这样能够有返回结果
String url = "https://api.weixin.qq.com/tcb/databaseupdate?access_token="+accessToken;
String qu = "\"db.collection(\"history\").where({age:15}).update({data:{age:16}})\"";
这样就没有返回结果
反复确认了,这是为什么呢?
找到问题了。。db.collection(\"history\") z这里必须是单引号。。
打印一下update返回的数据看看啊🤔。