Browse Source

解决json解析错误

gcz 2 weeks ago
parent
commit
1efda3bbac
3 changed files with 39 additions and 30 deletions
  1. 1 0
      src/styles/index.scss
  2. 28 20
      src/views/AIChat.vue
  3. 10 10
      src/views/Favorites.vue

+ 1 - 0
src/styles/index.scss

@@ -29,6 +29,7 @@ think{
   font-size: 16px;
   display: block;
   border-left: 1px solid #c9c9c9;
+  margin-bottom: 24px;
 }
 
 @mixin multi-ellipsis($line: 1) {

+ 28 - 20
src/views/AIChat.vue

@@ -257,10 +257,22 @@ const simulateStreamResponse = async () => {
       
       if (data.data === true) {
        
-        // accumulatedText = '<think>' + accumulatedText;
-          console.log('数据流结束',accumulatedText);
+        // 检查是否存在</think>标签但缺少开始标签
+        const thinkEndIndex = accumulatedText.indexOf('</think>');
+        if (thinkEndIndex !== -1) {
+          // 找到</think>标签的位置,在其对应内容的开头添加<think>标签
+          const beforeThinkEnd = accumulatedText.substring(0, thinkEndIndex + 8); // 包含</think>
+          const afterThinkEnd = accumulatedText.substring(thinkEndIndex + 8);
+          
+          if (!beforeThinkEnd.includes('<think>')) {
+            accumulatedText = '<think>' + beforeThinkEnd + afterThinkEnd;
+          }
+        }
+        
+        console.log('数据流结束',accumulatedText);
+        
         // 检查是否包含<think>标签
-        if (accumulatedText.startsWith('<think>') && accumulatedText.endsWith('</think>')) {
+        if (accumulatedText.includes('<think>') && accumulatedText.includes('</think>')) {
           // 如果是think标签内容,直接显示原文
           messages.value[messageIndex].content = accumulatedText;
         } else {
@@ -373,25 +385,21 @@ const getHistoryChat = async (historyId) => {
           let answerContent = message.answerContent
           let formattedAnswer = ''
 
-          // 移除开头的 "data:"
-          if (answerContent.startsWith('data:')) {
-            answerContent = answerContent.substring(5)
-          }
-
-          // 尝试解析第一个 JSON 对象(包含实际回答)
-          try {
-            const firstBrace = answerContent.indexOf('{')
-            const lastBrace = answerContent.indexOf('}{')
-            if (firstBrace !== -1 && lastBrace !== -1) {
-              const jsonStr = answerContent.substring(firstBrace, lastBrace + 1)
-              const jsonData = JSON.parse(jsonStr)
-              if (jsonData.data && jsonData.data.answer) {
-                formattedAnswer = jsonData.data.answer
+          // 按照 data: 分割字符串
+          const responses = answerContent.split('data:')
+          
+          // 遍历所有分割后的响应
+          for (const response of responses) {
+            if (response.trim() && !response.includes('"data": true')) {
+              try {
+                const jsonData = JSON.parse(response.trim())
+                if (jsonData.data && jsonData.data.answer) {
+                  formattedAnswer += jsonData.data.answer
+                }
+              } catch (e) {
+                console.warn('解析单条回答内容失败:', e)
               }
             }
-          } catch (e) {
-            console.warn('解析回答内容失败:', e)
-            formattedAnswer = answerContent
           }
 
           // 如果没有成功解析出任何内容,使用原始内容

+ 10 - 10
src/views/Favorites.vue

@@ -32,10 +32,10 @@
           </template>
         </el-input>
         </div>
-        <el-button @click="toggleBatchMode" class="batch-btn">
+        <!-- <el-button @click="toggleBatchMode" class="batch-btn">
           <img src="@/assets/icon-multi.png" class="btn-icon" />
           批量管理
-        </el-button>
+        </el-button> -->
       </div>
 
       <!-- 收藏列表 -->
@@ -59,7 +59,7 @@
                   <img src="@/assets/icon-more.svg" class="action-icon" />
                   <template #dropdown>
                     <el-dropdown-menu>
-                      <el-dropdown-item command="rename">重命名</el-dropdown-item>
+                      <!-- <el-dropdown-item command="rename">重命名</el-dropdown-item> -->
                       <el-dropdown-item command="delete">删除</el-dropdown-item>
                     </el-dropdown-menu>
                   </template>
@@ -189,12 +189,12 @@ const filteredFavorites = computed(() => {
   // }
 
   // 搜索过滤
-  if (searchText.value) {
-    const keyword = searchText.value.toLowerCase()
-    result = result.filter(item => 
-      item.title.toLowerCase().includes(keyword)
-    )
-  }
+  // if (searchText.value) {
+  //   const keyword = searchText.value.toLowerCase()
+  //   result = result.filter(item => 
+  //     item.name.toLowerCase().includes(keyword)
+  //   )
+  // }
 
   return result
 })
@@ -205,7 +205,7 @@ const fetchFavorites = async () => {
   try {
     const params = {
       relatedType: currentType.value !== 'all' ? currentType.value : undefined,
-      keyword: searchText.value.trim() || undefined,
+      searchText: searchText.value.trim() || undefined,
       pageNum: currentPage.value,
       pageSize: pageSize.value
     }