updated private cloud server and console

This commit is contained in:
strawmanbobi
2025-10-20 19:24:01 +08:00
parent f00d088078
commit a5ef6ac6ed
35 changed files with 236 additions and 231 deletions

View File

@@ -4,13 +4,13 @@
*/
function objectMemberCount(conditions) {
var memberCount = 0;
for(var f in conditions) {
let memberCount = 0;
for(let f in conditions) {
memberCount++;
}
var whereClause = "";
var index = 0;
for(var field in conditions) {
let whereClause = "";
let index = 0;
for(let field in conditions) {
whereClause += field + " = '" + conditions[field] + "'";
if(index < memberCount - 1) {
whereClause += " AND ";