当前位置: 首页 > news >正文

小程序引入deepseek

首先需要申请key: 地址

deepseek文档地址

使用wx.request获取数据

    const task = wx.request({url: 'https://api.deepseek.com/chat/completions',method: 'POST',responseType: 'text',headers: {'Content-Type': 'application/json','Authorization': 'Bearer YOUR_API_KEY'},dataType: 'text', // 或 'json'enableChunked: true,data: {messages: [{ role: 'user', 'content'}]},success: async function(res) {const systemInfo = Taro.getSystemInfoSync()// 兼容企微小程序不能使用onChunkReceived钩子的情况if (systemInfo.environment === 'wxwork') {if (res.data) {const infoList = res.data.match(/data:\s*(\{[^}]*\})/g)let data = ''Taro.hideLoading()for (let index = 0; index < infoList.length; index++) {await new Promise(resolve => setTimeout(resolve, 80))const jsonStr = infoList[index].replace(/^data:\s*/, '')data += JSON.parse(jsonStr).contentthat.setState({ deepSeekData: data })if (index === infoList.length - 1) {that.setState({disabled: false})}}}}}})let bl = truetask.onChunkReceived((chunk) => {const chunkText = SimpleTextDecoder(chunk.data); // 解码当前分块const regList = chunkText.match(/data:\s*(\{[^}]*\})/g)let deepSeekData = ''if (chunkText.indexOf('data: [DONE]') > -1) {request.post('admin/TransferStoreDeepseek', {transfer_store_id: this.state.transferInfo.id,deepseek: this.state.deepSeekData})this.setState({disabled: false})} else {if (!regList) returnregList.forEach((item) => {if (bl) {Taro.hideLoading()bl = false}const jsonStr = item.replace(/^data:\s*/, '')try {deepSeekData += JSON.parse(jsonStr).content} catch (e) {console.error('解析JSON失败:', e, '原始数据:', jsonStr)return null}})this.setState({ deepSeekData: this.state.deepSeekData += deepSeekData });}});

渲染数据

使用markdown-it插件

npm install markdown-it@12.3.2
import { Button, View, RichText, Input } from '@tarojs/components';
import { parseMarkdownToHtml } from '@/utils/markdownParser';
import { filterHtmlForRichText } from '@/utils/htmlFilter';
import { SimpleTextDecoder} from '@/utils/SimpleTextDecoder';<RichText nodes={filterHtmlForRichText(parseMarkdownToHtml(this.state.deepSeekData))} />
配置markdown
// utils/markdownParser.js
import markdownIt from 'markdown-it'
// 初始化 markdown-it 实例
const md = new markdownIt({html: false,        // 允许解析 HTML 标签breaks: true,      // 保留换行符linkify: true,     // 自动转换 URL 为链接typographer: true  // 启用智能标点替换
});// Markdown 转 HTML
export function parseMarkdownToHtml(mdText) {return md.render(mdText);
}
标签处理
// utils/htmlFilter.js
export function filterHtmlForRichText(html) {// 转换不支持的标签(示例:表格转 div 布局)let safeHtml = html.replace(/<table>/g, '<div class="table">').replace(/<\/table>/g, '</div>').replace(/<tr>/g, '<div class="tr">').replace(/<\/tr>/g, '</div>').replace(/<td>/g, '<div class="td">').replace(/<\/td>/g, '</div>').replace(/<h1>/g, '<h1 class="h1">').replace(/<h3>/g, '<h3 class="h3">').replace(/<ul>/g, '<ul class="ul">').replace(/<li>/g, '<li class="li">').replace(/<ol>/g, '<ol class="ol">').replace(/<strong>/g, '<strong class="strong">')// 移除危险标签(如 script)safeHtml = safeHtml.replace(/<script[^>]*>[\s\S]*?<\/script>/gi, '');return safeHtml;
}
UTF-8 解码
// utils/htmlFilter.js
// 
export function SimpleTextDecoder (buffer) {let str = '';const uint8Array = new Uint8Array(buffer);for (let i = 0; i < uint8Array.length; i++) {str += String.fromCharCode(uint8Array[i]);}return decodeURIComponent(escape(str)); // UTF-8 解码
}
样式处理
  .h1 {font-size: 40px;}.h3 {font-size: 32px;line-height: 50px;}.ul, .ol {padding-left: 36px;}.strong {font-weight: normal;}
http://www.lqws.cn/news/157213.html

相关文章:

  • 每日算法-250605
  • xmind转换为markdown
  • QQ邮箱发送验证码(Springboot)
  • SDC命令详解:使用set_max_fanout命令进行约束
  • MacOS解决局域网“没有到达主机的路由 no route to host“
  • [原创](现代Delphi 12指南):[macOS 64bit App开发]: TTask创建多线程, 更简单, 更快捷.
  • Git 安装全攻略Linux、macOS、Windows 与源码编译
  • redis数据过期策略、淘汰策略
  • 安卓四大组件数据存储Handler
  • React从基础入门到高级实战:React 实战项目 - 项目一:在线待办事项应用
  • Kafka入门-消费者
  • 作为过来人,浅谈一下高考、考研、读博
  • 关于akka官方quickstart示例程序(scala)的记录
  • UDP:简洁高效的报文结构解析与关键注意事项
  • 计算机网络备忘录
  • 网络通信核心概念全解析:从IP地址到TCP/UDP实战
  • ​减少交通拥堵、提高效率、改善交通安全的智慧交通开源了。
  • CodeGeeX 本地模式
  • Golang——9、反射和文件操作
  • 使用SSH tunnel访问内网的MySQL
  • VSCode主题定制:CSS个性化你的编程世界
  • nginx.conf配置详解:从(413 Request Entity Too Large)说起
  • 《前端面试题:CSS的display属性》
  • 基于SpringBoot和PostGIS的OSM时空路网数据入库实践
  • 六、数据库的安全性
  • 【AI学习】KV-cache和page attention
  • 04-初识css
  • CICD实战(二)-----gitlab的安装与配置
  • 一文读懂 ZFS RAIDZ:深度解析 RAIDZ 类型、模式、配置和应用场景
  • nginx