123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <template>
- <div class="app-layout">
- <div class="sidebar">
- <div class="logo-section">
- <img src="@/assets/images/common/ai/logo.png" alt="新基础 小新" width="160" height="160" />
- <span class="logo-text">新基础 小新</span>
- </div>
- </div>
- <div>
- <div class="content-box">
- <div v-html="streamHtmlData"></div>
- <!-- <span>{{streamData}}</span>-->
- <span class="loading-dots"></span>
- <span class="dot"></span>
- <span class="dot"></span>
- </div>
- <el-button @click="stopMessage">停止回答</el-button>
- </div>
- </div>
- </template>
- <script setup>
- import {getAiChatRecordList} from '@/api/xjc-integratedmachine/common/aiChat.js'
- import { getToken } from '@/utils/auth'
- import { marked } from 'marked'
- let data = ref()
- const streamData = ref(''); // 存储流式数据
- let streamHtmlData = ref(''); // 存储流式数据
- const isLoading = ref(false); // 加载状态
- let reader = null; // 读取器实例
- let controller = null; // AbortController用于中止请求
- // 查看所有聊天记录
- list();
- function list() {
- getAiChatRecordList().then(resp =>{
- console.log(resp)
- data.value = resp;
- })
- }
- const sendMessage = async() => {
- try{
- isLoading.value = true;
- streamData.value = ''; // 清空之前的数据
- // 创建AbortController以便可以中止请求
- controller = new AbortController();
- // 请求体
- let form = {
- "content": "生成一个高中学习计划表格"
- }
- // 发送fetch请求
- const response = await fetch('/dev-api/ai/chat/stream', {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- 'Authorization': 'Bearer ' + getToken()
- },
- body: JSON.stringify(form)
- });
- // 获取可读流的读取器
- reader = response.body.getReader();
- const decoder = new TextDecoder('utf-8');
- // 循环读取流数据
- while (true) {
- const { done, value } = await reader.read();
- if (done) break; // 如果流读取完成则退出循环
- // 解码并追加数据
- let chunk = decoder.decode(value, { stream: true });
- chunk = chunk.replace(/\n\n/g, ' ').replace(/data:/g, '')
- streamData.value += chunk;
- streamHtmlData.value = marked(streamData.value)
- }
- }catch (error) {
- // 如果是手动中止,不显示错误
- if (error.name !== 'AbortError') {
- console.error('流式读取失败:', error);
- streamData.value = 'Error: ' + error.message;
- }
- } finally {
- streamHtmlData.value = marked(streamData.value)
- isLoading.value = false;
- }
- }
- const stopMessage = () => {
- if (reader) {
- // 取消读取
- reader.cancel().catch(() => {});
- reader = null;
- }
- if (controller) {
- // 中止请求
- controller.abort();
- controller = null;
- }
- isLoading.value = false;
- }
- onMounted(()=>{
- sendMessage()
- })
- </script>
- <script>
- export default {
- name: "chat"
- }
- </script>
- <style scoped>
- .app-layout {
- display: flex;
- height: 100vh;
- }
- .sidebar {
- width: 200px;
- background-color: #f4f4f9;
- padding: 20px;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .logo-section {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .content-box {
- /*max-height: 300px;*/
- width: 80vw;
- overflow-y: auto;
- border: 1px solid #eee;
- padding: 10px;
- margin-top: 10px;
- background: #f9f9f9;
- }
- pre {
- white-space: pre-wrap;
- word-wrap: break-word;
- }
- .loading-dots {
- padding-left: 5px;
- }
- .dot {
- display: inline-block;
- margin-left: 5px;
- width: 8px;
- height: 8px;
- background-color: #000000;
- border-radius: 50%;
- animation: pulse 1.2s infinite ease-in-out both;
- }
- .dot:nth-child(2) {
- animation-delay: -0.6s;
- }
- @keyframes pulse {
- 0%,
- 100% {
- transform: scale(0.6);
- opacity: 0.4;
- }
- 50% {
- transform: scale(1);
- opacity: 1;
- }
- }
- </style>
|