|
@@ -243,6 +243,29 @@ export class CloudQuery {
|
|
let objList = list.map((item:any)=>this.dataToObj(item))
|
|
let objList = list.map((item:any)=>this.dataToObj(item))
|
|
return objList || [];
|
|
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() {
|
|
async first() {
|