web端 javascript 里面 // 发送一条推送 push.send({ data: { "type": "systeminfo.", "unreadNum": "2", "alert": "this is a push message for systeminfo." }, where: { "installationId": "a3ff0d91-7bd1-473f-b977-7879493026ec" } }); 推送成功 但是 where 没有任何效果。 Notification 表里的where列 是这样的 {"query":{"valid":true},"sort":{"createdAt":1}} 在https://leancloud.cn/apionline/#!/push/推送消息post_0 这API工具里测试 参数值输入: { data: { "type": "systeminfo.", "unreadNum": "2", "alert": "this is a push message for systeminfo." }, where: { "installationId": "a3ff0d91-7bd1-473f-b977-7879493026ec" } } 表里的where列正常 {"query":{"valid":true,"deviceType":"android","installationId":"a3ff0d91-7bd1-473f-b977-7879493026ec"},"sort":{"createdAt":1}} 为什么,我要推送指定用户,where 里面应该怎么写??