소스 검색

fix(ncloud): 修复 equalTo 查询条件设置

18460000105 3 달 전
부모
커밋
d7f906cd77
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      novel-app/src/app/lib/ncloud.ts

+ 1 - 0
novel-app/src/app/lib/ncloud.ts

@@ -112,6 +112,7 @@ export class CloudQuery {
   }
 
   equalTo(key: string, value: any) {
+    if (!this.queryParams["where"]) this.queryParams["where"] = {};
       this.queryParams["where"][key] = value;
   }