使用 JSX、render 自定义表格组件。
提供两种实现方式:一种使用 scopedSlots 插槽实现,一种使用表格列 formatter 函数实现。
- scopedSlots 插槽实现。
2024年3月7日小于 1 分钟
使用 JSX、render 自定义表格组件。
提供两种实现方式:一种使用 scopedSlots 插槽实现,一种使用表格列 formatter 函数实现。
解决方法:在容器控件上添加如下样式。
<h3 style="white-space:pre-wrap" v-html="data"></h3>
集成大语言模型,实现智能对话
let url = 'http://10.0.28.4:3002/api/v1/chat/completions'
let method = 'post'
let headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer fastgpt-200UGZRm0PUxykWSM2Bp5fZfLncA0uwNtjNXQU8jhAyGgVIjI8zWuP8dFWh'
}
let param = {
"model": 'chatglm',
"chatId": 10,
"stream": true,
"messages": [
{
"role": "user",
"content": data.message
}
]
}
const resp = await fetch(url, {
method: method,
headers: headers,
body: JSON.stringify(param)
})
const reader = resp.body.getReader();
const textDecoder = new TextDecoder("utf-8");
while (true) {
const { done, value } = await reader.read()
if (done) {
break;
}
let decodedValue = textDecoder.decode(value);
const dataString = decodedValue.substring(decodedValue.indexOf('{'));
try {
let data = JSON.parse(dataString)
let content = data.choices[0].delta.content
if (content !== '' || content !== '\\n') {
this.historyChatList[this.historyChatList.length - 1].message += content
this.scrollToBottom()
}
} catch (error) {
this.chatLoading = false
}
}
// 滚动条定位点到最下面
scrollToBottom() {
const container = this.$refs.chatList;
container.$el.scrollTop = container.$el.scrollHeight;
}