Преглед на файлове

Resolved merge conflicts

13970091101 преди 3 месеца
родител
ревизия
1afe4a6b5d
променени са 1 файла, в които са добавени 23 реда и са изтрити 0 реда
  1. 23 0
      huinongbao-app/src/lib/ncloud.ts

+ 23 - 0
huinongbao-app/src/lib/ncloud.ts

@@ -243,6 +243,29 @@ export class CloudQuery {
         let objList = list.map((item:any)=>this.dataToObj(item))
         return objList || [];
     }
+    async find1(query: any) {
+        const url = `http://dev.fmode.cn:1337/parse/classes/${this.className}/`;
+    
+        const response = await fetch(url, {
+          headers: {
+            "Content-Type": "application/json",
+            "x-parse-application-id": "dev"
+          },
+          body: JSON.stringify({ where: query }), // 将查询条件转换为 JSON 字符串
+          method: "POST",
+          mode: "cors",
+          credentials: "omit"
+        });
+    
+        if (!response.ok) {
+            const errorText = await response.text(); // 获取错误信息
+            console.error('Error fetching comments:', errorText);
+            throw new Error('Network response was not ok');
+        }
+    
+        const json = await response.json();
+        return json.results || []; // 返回查询结果,确保是数组
+      }
 
 
     async first() {