cainiao-hue 3 months ago
parent
commit
218f65a7b7
3 changed files with 21 additions and 26 deletions
  1. 1 2
      docs-prod/schema.md
  2. 0 1
      soul-app/src/app/tab2/tab2.page.html
  3. 20 23
      soul-app/src/app/tab2/tab2.page.ts

+ 1 - 2
docs-prod/schema.md

@@ -52,8 +52,7 @@ class ChatCompanion {
 class ChatRecord {
     + objectId: String //聊天记录唯一标识符
     + title:String //聊天标题
-    + content:String //聊天内容
-    - chatList: Array //聊天记录
+    + content:Array //聊天内容
     + user: Pointer<User> //关联的用户对象
     + chatpartner: Pointer<ChatPartner> //关联的聊天机器人对象
     + getChatHistory(): List

+ 0 - 1
soul-app/src/app/tab2/tab2.page.html

@@ -30,7 +30,6 @@
               <h2>{{ chatpartner.get('name') }}</h2>
               <p style="font-size: 15px;">专业领域:{{ chatpartner.get('expertise') }}</p>
             </ion-label>
-            <!--<ion-icon src="assets/outline/user.svg" slot="end"></ion-icon> -->
             <ion-button slot="end" (click)="clickToConsult(chatpartner)" style="margin-left: 10px;">开始陪聊</ion-button>
           </ion-item>
         </ion-list>

+ 20 - 23
soul-app/src/app/tab2/tab2.page.ts

@@ -123,22 +123,25 @@ export class Tab2Page {
         ${userPrompt}
         `);
       },
-      onMessage:(chat:FmodeChat,message:FmodeChatMessage)=>{
-        console.log("onMessage",message)
-        let content:any = message?.content
-        if(typeof content === "string"){
-          messages.push(content); // 将新消息添加到 messages 数组中
-            consult.set({
-              content: messages.join("\n"), // 将所有消息合并为一个字符串
-            });
-          // 在此之前检查 consult 对象是否有效
-          console.log("准备保存聊天记录:", consult);
-          consult.save().then(() => {
-              console.log("聊天记录已保存");
-          }).catch((error) => {
-              console.error("保存聊天记录时出错:", error);
-          });
-        }
+
+      onMessage: (chat: FmodeChat, message: FmodeChatMessage) => {
+        console.log("onMessage", message);
+        // 直接通过 chat.messageList 获取所有消息
+        const allMessages = chat.messageList.map(msg => msg.content).join("\n");
+        // 更新 consult 对象的内容
+        consult.set({
+            content: allMessages, // 将所有消息合并为一个字符串
+        });
+        // 在此之前检查 consult 对象是否有效
+        console.log("准备保存聊天记录:", consult);
+        // 仅在内容发生变化时保存
+        consult.save().then(() => {
+          console.log("聊天记录已保存");
+      }).catch((error) => {
+          console.error("保存聊天记录时出错:", error);
+      });
+
+      
       },
         // chat?.chatSession?.id 本次会话的 chatId
         onChatSaved:(chat:FmodeChat)=>{
@@ -148,15 +151,9 @@ export class Tab2Page {
     openChatPanelModal(this.modalCtrl,options)
     
   }
-  matchedCounselor: { name: string; specialty: string } | null = null;
-
-
-
-
-
 
+  matchedCounselor: { name: string; specialty: string } | null = null;
 
-  
   async goChat(chatcompanion:CloudObject) {
     // 验证用户登录
     let currentUser = new CloudUser();