小程序引入deepseek

首先需要申请key: 地址

deepseek文档地址

使用wx.request获取数据

js 复制代码
    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).content
              that.setState({ deepSeekData: data })
              if (index === infoList.length - 1) {
                that.setState({
                  disabled: false
                })
              }
            }
          }
        }
      }
    })
    let bl = true
    task.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) return
        regList.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插件

js 复制代码
npm install markdown-it@12.3.2
js 复制代码
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
js 复制代码
// 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);
}
标签处理
js 复制代码
// 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 解码
js 复制代码
// 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 解码
}
样式处理
css 复制代码
  .h1 {
    font-size: 40px;
  }
  .h3 {
    font-size: 32px;
    line-height: 50px;
  }
  .ul, .ol {
    padding-left: 36px;
  }
  .strong {
    font-weight: normal;
  }
相关推荐
IsJunJianXin1 小时前
pdd小程序 cdp 保存响应体
linux·服务器·小程序·pdd小程序·拼多多响应体解密·小程序cdp·拼多多rpc取响应体
Haibakeji1 天前
长沙餐饮门店点餐配送小程序定制开发
大数据·小程序
2501_915918411 天前
iOS App性能测试工具的实现方法与优化循环指南
android·ios·小程序·https·uni-app·iphone·webview
程序鉴定师1 天前
2026济南十大App制作公司测评(精简版):覆盖小程序、定制开发与跨平台方案
大数据·小程序
斯内普吖1 天前
(开源)高校素拓分管理系统小程序实战指南 基于 Java + SpringBoot + uni-app + Vue + MySQL
java·spring boot·mysql·小程序·uni-app·开源
上海观智网络2 天前
上海小程序定制开发合同怎么签?需要注意什么?
经验分享·笔记·小程序
it-10242 天前
抖音快手短视频去水印微信小程序/一键去水印/小程序去水印接口代码
微信小程序·小程序·php
万岳科技3 天前
教育培训小程序如何构建线上线下一体化教学体系
小程序·apache
全职计算机毕业设计3 天前
智慧仓储出入库小程序+后台管理系统 —— 全流程数字化资产管控平台
小程序
万岳软件开发小城3 天前
2026在线教育系统源码搭建指南,支持APP+H5+小程序
小程序·在线教育系统源码·教育app开发·教育小程序开发·教育网校平台搭建