2 Angajamente a509d0bd9b ... 81fc121c3f

Autor SHA1 Permisiunea de a trimite mesaje. Dacă este dezactivată, utilizatorul nu va putea trimite nici un fel de mesaj Data
  cyx 81fc121c3f Merge branch 'master' of http://git.fmode.cn:3000/18779989085/202226701041 3 luni în urmă
  cyx bfddbcdcf5 feat: add aichat 3 luni în urmă

+ 6 - 2
TFPower-app/src/app/tab1/tab1.page.ts

@@ -1,4 +1,4 @@
-import { Component } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
 import {
   IonHeader,
   IonToolbar,
@@ -69,7 +69,7 @@ import { AiplanPageComponent } from '../page/aiplan-page/aiplan-page.component';
   ],
 })
 export class Tab1Page {
-  constructor(private router: Router) { }
+  constructor(private router: Router) {}
   alertButtons = ['打卡'];
   duringday: number = 10;
   goodday: number = 20;
@@ -105,4 +105,8 @@ export class Tab1Page {
     let idx = this.todolist.findIndex((item) => item === todo);
     this.todolist.splice(idx, 1);
   }
+
+  // 首页新闻
+  news: string = 'news';
+  newslists: Array<any> = [];
 }

+ 15 - 0
TFPower-server/migration/import-data.js

@@ -0,0 +1,15 @@
+const { Query } = require("./lib/ncloud");
+
+async function main() {
+  let news = "News";
+  let newsQuery = new Query(news);
+  // let newslists = await newsQuery.getAll();
+  // for (let i = 0; i < newslists.length; i++) {
+  //   console.log(newslists[i]);
+  // }
+  let id = "xwOWEOLD13";
+  let one = await newsQuery.getBy(id);
+  console.log(one);
+}
+
+main();

+ 89 - 0
TFPower-server/migration/lib/ncloud.js

@@ -0,0 +1,89 @@
+class Query {
+  className = "";
+  constructor(className) {
+    this.className = className;
+  }
+  async getAll() {
+    let response = await fetch(
+      "http://1.94.237.145:1338/parsecyx/classes/" + this.className,
+      {
+        headers: {
+          accept: "*/*",
+          "accept-language":
+            "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,zh-TW;q=0.5,ja;q=0.4",
+          "if-none-match": 'W/"f36-Q0ech+Jn3bu0uYx1n7/k1+XDYr0"',
+          "x-parse-application-id": "cyx",
+        },
+        referrer: "http://127.0.0.1:4040/",
+        referrerPolicy: "strict-origin-when-cross-origin",
+        body: null,
+        method: "GET",
+        mode: "cors",
+        credentials: "omit",
+      }
+    );
+
+    let json = [];
+    if (response) {
+      json = await response.json();
+    }
+    return json.results || [];
+  }
+
+  async getBy(id) {
+    let response = await fetch(
+      "http://1.94.237.145:1338/parsecyx/classes/" + this.className + "/" + id,
+      {
+        headers: {
+          accept: "*/*",
+          "accept-language":
+            "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,zh-TW;q=0.5,ja;q=0.4",
+          "if-none-match": 'W/"f36-Q0ech+Jn3bu0uYx1n7/k1+XDYr0"',
+          "x-parse-application-id": "cyx",
+        },
+        referrer: "http://127.0.0.1:4040/",
+        referrerPolicy: "strict-origin-when-cross-origin",
+        body: null,
+        method: "GET",
+        mode: "cors",
+        credentials: "omit",
+      }
+    );
+
+    let json = {};
+    if (response) {
+      json = await response.json();
+    }
+
+    return json || null;
+  }
+}
+
+class Insert {
+  className = "";
+  constructor(className) {
+    this.className = className;
+  }
+  async addUser(info) {
+    if (info.username) {
+      method = "";
+    }
+    let body = JSON.stringify(info);
+    let response = await fetch("http://1.94.237.145:1338/parsecyx/users", {
+      headers: {
+        accept: "*/*",
+        "accept-language":
+          "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,zh-TW;q=0.5,ja;q=0.4",
+        "content-type": "text/plain",
+      },
+      referrer: "http://127.0.0.1:4040/",
+      referrerPolicy: "strict-origin-when-cross-origin",
+      // body: '{"username":"test","password":"test","email":"test@qq.com","phoneNumber":"10086","sex":"男","age":"18","_ApplicationId":"cyx","_ClientVersion":"js3.4.2","_MasterKey":"cyxmk","_InstallationId":"111053ea-8bfc-4dfc-8818-df34dd45d6b0"}',
+      body: body,
+      method: method,
+      mode: "cors",
+      credentials: "omit",
+    });
+  }
+}
+module.exports.Query = Query;