Browse Source

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

18460000105 3 tháng trước cách đây
mục cha
commit
d7f906cd77
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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;
   }