
【工具推荐】SnapDevelop 低代码开发工具开放免费试用,参与体验有奖
最近接触到一个挺有意思的低代码开发工具——SnapDevelop,是面向 .NET 技术栈的开发人员打造的全栈开发平台。它现在正在开放免费试用 + 开发者体验活动,还有100% 抽奖和最高 500 元现金奖励,所以简单分享下使用体验和活动信息,感兴趣的同学可以试试。
SnapDevelop 是什么?
SnapDevelop 是一个 .NET 平台下的低代码开发工具,特点是:
- 支持 Web 和移动端页面可视化开发
- 内置视图设计器,支持拖拽式构建 UI 结构
- 自动生成前端页面 + 后端 Web API + 数据访问代码
- 提供表格、表单、详情页、树形结构等标准页面模板
- 支持前后端绑定(选择 API 即可自动配置请求逻辑)
- 输出代码结构清晰,可与现有项目集成
它并非封闭黑盒,更偏向“开发加速器”,适合 C#/.NET 工程师快速构建业务系统。试用体验
- 拖组件 + 配属性 + 选 API,页面就出来了;
- 无需手写 JS、CSS、HTML,效率比传统开发方式大幅提升;
- 页面模板规范,适用于内部系统、数据录入、管理后台等场景;
- 支持导出代码继续二次开发,技术主导权保留。
活动福利(100%中奖 )
SnapDevelop 目前正在做开发者体验活动:
- 注册 + 登录体验后,即可参与抽奖;
- 奖品包括:
· 一等奖:500 元现金红包;
· 二等奖:机械键盘;
· 三等奖:程序员挎包;
· 四等奖:10元现金红包; - 完成更多体验任务,可提升中奖等级。
> 报名方式:
扫码海报
最近接触到一个挺有意思的低代码开发工具——SnapDevelop,是面向 .NET 技术栈的开发人员打造的全栈开发平台。它现在正在开放免费试用 + 开发者体验活动,还有100% 抽奖和最高 500 元现金奖励,所以简单分享下使用体验和活动信息,感兴趣的同学可以试试。
SnapDevelop 是什么?
SnapDevelop 是一个 .NET 平台下的低代码开发工具,特点是:
- 支持 Web 和移动端页面可视化开发
- 内置视图设计器,支持拖拽式构建 UI 结构
- 自动生成前端页面 + 后端 Web API + 数据访问代码
- 提供表格、表单、详情页、树形结构等标准页面模板
- 支持前后端绑定(选择 API 即可自动配置请求逻辑)
- 输出代码结构清晰,可与现有项目集成
它并非封闭黑盒,更偏向“开发加速器”,适合 C#/.NET 工程师快速构建业务系统。试用体验
- 拖组件 + 配属性 + 选 API,页面就出来了;
- 无需手写 JS、CSS、HTML,效率比传统开发方式大幅提升;
- 页面模板规范,适用于内部系统、数据录入、管理后台等场景;
- 支持导出代码继续二次开发,技术主导权保留。
活动福利(100%中奖 )
SnapDevelop 目前正在做开发者体验活动:
- 注册 + 登录体验后,即可参与抽奖;
- 奖品包括:
· 一等奖:500 元现金红包;
· 二等奖:机械键盘;
· 三等奖:程序员挎包;
· 四等奖:10元现金红包; - 完成更多体验任务,可提升中奖等级。
> 报名方式:
扫码海报

iOS 抓包实战:时间戳偏差导致的数据同步异常排查记录
'''“这条数据不是我填的”“我的更新被覆盖了”“两个设备显示不一致”——这些是产品上线后最令人头疼的反馈。
最近我们在一次用户同步问题排查中,发现表面是“数据丢失”问题,实则是多端数据提交时间戳处理不一致,导致后台认为老数据为新,覆盖了正确内容。这类问题通常日志无法直接反映,需要从网络请求行为层级来全面还原。
本文是一次跨平台同步数据错乱排查的抓包实录,目标是展示如何用多工具组合方式,精确还原并定位导致数据错误的根因。
现象:多端编辑同一条数据,最终内容不一致
这是一个允许多端编辑草稿的功能,支持自动保存。用户在Mac编辑后,又在iOS端补充内容,结果上线后发现,iOS端的“旧数据”覆盖了Mac上的新输入。
后台数据库记录显示两次请求都成功落库,时间相近。没有接口报错、没有崩溃、没有异常日志。系统按流程完成了一切,但结果是错的。
拆解抓包需求:哪些信息需要被还原?
我们决定还原客户端提交数据时真实传输内容,重点关注以下几点:
- 请求是否携带本地生成的时间戳或版本号?
- 不同端是否使用相同时间基准?
- 服务端是否信任客户端时间排序?
- 是否存在重复请求/数据重放等行为?
工具分工与分析流程
工具 | 使用目的 | 阶段 |
---|---|---|
Charles | 抓取Mac端数据提交请求,记录Body与Header | 桌面端行为分析 |
Sniffmaster | 抓取iOS端App请求,解密HTTPS并获取数据体 | 移动端行为还原 |
mitmproxy | 拦截并打印提交请求,分析时间戳与数据变化逻辑 | 请求内容细节验证 |
Wireshark | 辅助判断请求是否被重发/中断/覆盖 | 网络层分析 |
抓包发现的第一个关键信息:客户端本地生成时间戳
在Charles中查看Mac客户端请求时发现,提交内容中有一个字段client_ts
(客户端时间戳),用于版本判断。服务端以此值判断“哪个数据是最新的”。
随后用Sniffmaster抓取iOS端的请求,发现其client_ts
值明显小于Mac请求中值,尽管是后发请求。
进一步调查发现,iOS设备的系统时间设定与服务器相差约40秒,导致其生成的时间戳落后。
由于服务端逻辑采用“较大时间戳为准”机制,这直接导致服务端认为“iOS的数据更新较新”,从而用旧数据覆盖了正确草稿。
请求行为链进一步分析:是否存在补发或重复提交
我们启用mitmproxy脚本,对请求拦截并输出数据体与Header内容:
def request(flow):
if "/draft/submit" in flow.request.path:
print(flow.request.content.decode())
同样,Sniffmaster本身也自带JavaScript拦截器功能,可以做到抓包的同时直接拦截请求和响应。
分析5次请求发现:
- iOS端存在一次“App重启后自动重发”的行为,补发的请求再次使用了缓存旧数据和旧时间戳;
- 请求中并无版本ID或唯一ID,无法做去重判断;
- 服务端也未对内容变化做判定,仅以时间戳排序处理。
网络层次验证:是否存在丢包或重传导致数据重发
通过Wireshark观察发现:
- 某一次iOS请求因网络抖动导致连接关闭;
- SDK自动重试机制补发上一次请求,未生成新时间戳,仅重发原数据包;
- 这次重试在服务端无日志记录为“重发”,仅认定为一次独立提交。
问题复现与多端验证策略
为了确保问题可控可复现,我们制定以下验证流程:
- 设置iOS设备系统时间落后1分钟;
- 在Mac上提交内容,确保服务器记录版本时间;
- 在iOS端重启App并打开编辑页面;
- 不修改数据,观察其是否自动提交;
- 使用Sniffmaster和mitmproxy再次抓包确认数据结构一致性;
该流程成功复现了“旧内容覆盖新内容”的行为链。
修复策略与流程优化
本问题不在于请求报错或接口失败,而是数据同步机制未能区分“补发的旧数据”与“用户主动提交的新数据”。
综合抓包信息后,我们调整:
- 客户端提交请求增加唯一版本ID(UUID),服务端以其为准判断幂等;
- 所有平台统一调用系统时间基准(UTC)而非本地系统时间;
- SDK补发请求添加“来源标识”,避免误判为新提交;
- 针对“草稿覆盖”场景设计双向合并提示机制;
总结:可用不等于正确,抓包的价值在于还原行为路径
抓包并不总是为了处理接口错误,更多时候,它帮助我们理解系统在真实运行时的每一个步骤,尤其是那些“行为正确但结果错误”的场景。
在这次分析中,Sniffmaster在还原iOS端真实请求、解密HTTPS内容、识别字段差异方面起到了作用,但整个问题的分析离不开Charles、mitmproxy与Wireshark的协同。
最终我们不是发现了Bug,而是找到了“被误判为正确”的一系列行为。这也是抓包的意义:不仅仅看得见,还得看得全、看得准。'''
'''“这条数据不是我填的”“我的更新被覆盖了”“两个设备显示不一致”——这些是产品上线后最令人头疼的反馈。
最近我们在一次用户同步问题排查中,发现表面是“数据丢失”问题,实则是多端数据提交时间戳处理不一致,导致后台认为老数据为新,覆盖了正确内容。这类问题通常日志无法直接反映,需要从网络请求行为层级来全面还原。
本文是一次跨平台同步数据错乱排查的抓包实录,目标是展示如何用多工具组合方式,精确还原并定位导致数据错误的根因。
现象:多端编辑同一条数据,最终内容不一致
这是一个允许多端编辑草稿的功能,支持自动保存。用户在Mac编辑后,又在iOS端补充内容,结果上线后发现,iOS端的“旧数据”覆盖了Mac上的新输入。
后台数据库记录显示两次请求都成功落库,时间相近。没有接口报错、没有崩溃、没有异常日志。系统按流程完成了一切,但结果是错的。
拆解抓包需求:哪些信息需要被还原?
我们决定还原客户端提交数据时真实传输内容,重点关注以下几点:
- 请求是否携带本地生成的时间戳或版本号?
- 不同端是否使用相同时间基准?
- 服务端是否信任客户端时间排序?
- 是否存在重复请求/数据重放等行为?
工具分工与分析流程
工具 | 使用目的 | 阶段 |
---|---|---|
Charles | 抓取Mac端数据提交请求,记录Body与Header | 桌面端行为分析 |
Sniffmaster | 抓取iOS端App请求,解密HTTPS并获取数据体 | 移动端行为还原 |
mitmproxy | 拦截并打印提交请求,分析时间戳与数据变化逻辑 | 请求内容细节验证 |
Wireshark | 辅助判断请求是否被重发/中断/覆盖 | 网络层分析 |
抓包发现的第一个关键信息:客户端本地生成时间戳
在Charles中查看Mac客户端请求时发现,提交内容中有一个字段client_ts
(客户端时间戳),用于版本判断。服务端以此值判断“哪个数据是最新的”。
随后用Sniffmaster抓取iOS端的请求,发现其client_ts
值明显小于Mac请求中值,尽管是后发请求。
进一步调查发现,iOS设备的系统时间设定与服务器相差约40秒,导致其生成的时间戳落后。
由于服务端逻辑采用“较大时间戳为准”机制,这直接导致服务端认为“iOS的数据更新较新”,从而用旧数据覆盖了正确草稿。
请求行为链进一步分析:是否存在补发或重复提交
我们启用mitmproxy脚本,对请求拦截并输出数据体与Header内容:
def request(flow):
if "/draft/submit" in flow.request.path:
print(flow.request.content.decode())
同样,Sniffmaster本身也自带JavaScript拦截器功能,可以做到抓包的同时直接拦截请求和响应。
分析5次请求发现:
- iOS端存在一次“App重启后自动重发”的行为,补发的请求再次使用了缓存旧数据和旧时间戳;
- 请求中并无版本ID或唯一ID,无法做去重判断;
- 服务端也未对内容变化做判定,仅以时间戳排序处理。
网络层次验证:是否存在丢包或重传导致数据重发
通过Wireshark观察发现:
- 某一次iOS请求因网络抖动导致连接关闭;
- SDK自动重试机制补发上一次请求,未生成新时间戳,仅重发原数据包;
- 这次重试在服务端无日志记录为“重发”,仅认定为一次独立提交。
问题复现与多端验证策略
为了确保问题可控可复现,我们制定以下验证流程:
- 设置iOS设备系统时间落后1分钟;
- 在Mac上提交内容,确保服务器记录版本时间;
- 在iOS端重启App并打开编辑页面;
- 不修改数据,观察其是否自动提交;
- 使用Sniffmaster和mitmproxy再次抓包确认数据结构一致性;
该流程成功复现了“旧内容覆盖新内容”的行为链。
修复策略与流程优化
本问题不在于请求报错或接口失败,而是数据同步机制未能区分“补发的旧数据”与“用户主动提交的新数据”。
综合抓包信息后,我们调整:
- 客户端提交请求增加唯一版本ID(UUID),服务端以其为准判断幂等;
- 所有平台统一调用系统时间基准(UTC)而非本地系统时间;
- SDK补发请求添加“来源标识”,避免误判为新提交;
- 针对“草稿覆盖”场景设计双向合并提示机制;
总结:可用不等于正确,抓包的价值在于还原行为路径
抓包并不总是为了处理接口错误,更多时候,它帮助我们理解系统在真实运行时的每一个步骤,尤其是那些“行为正确但结果错误”的场景。
在这次分析中,Sniffmaster在还原iOS端真实请求、解密HTTPS内容、识别字段差异方面起到了作用,但整个问题的分析离不开Charles、mitmproxy与Wireshark的协同。
最终我们不是发现了Bug,而是找到了“被误判为正确”的一系列行为。这也是抓包的意义:不仅仅看得见,还得看得全、看得准。'''
收起阅读 »
解决 uni-app 开发中环境版本与编译工具版本冲突的方案
在 uni-app 开发中,环境版本与编译工具版本冲突是常见问题,以下是系统性解决方案:
- 统一版本管理
通过package.json锁定依赖版本,避免自动升级导致的冲突。
json
{
"devDependencies": {
"@dcloudio/types": "3.4.17",
"@dcloudio/uni-app-cli": "3.4.17",
"@dcloudio/uni-cli-shared": "3.4.17"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}
使用npm install --save-exact精确安装指定版本。
团队协作时共享package-lock.json确保依赖一致性。 - 清理缓存与重新安装
bash删除缓存与依赖
rm -rf node_modules
npm cache clean --force
重新安装
npm install
- 手动指定 CLI 版本
通过npx临时使用特定版本的编译工具:
bash
npx @dcloudio/uni-cli-shared@3.4.17 build --platform h5 - 环境变量配置
在项目根目录创建.env文件,指定 HBuilderX CLI 路径:
bash
UNI_CLI_PATH=./node_modules/@dcloudio/uni-cli-shared/bin/uni.js - 版本兼容性检查
参考官方版本映射表:
HBuilderX 版本 uni-app 版本
3.7.0+ 3.4.17+
3.6.0 3.4.0 - 降级 / 升级策略
冲突报错:优先升级到最新稳定版(推荐)。
bash
npm update @dcloudio/uni-app-cli
兼容性问题:回退到已知兼容版本。
bash
npm install @dcloudio/uni-app-cli@3.4.17
-
插件与 SDK 适配
检查项目中使用的第三方插件是否支持当前 uni-app 版本,必要时联系插件作者更新。 -
开发工具同步升级
确保 HBuilderX 为最新版本,避免 IDE 与 CLI 版本不匹配。 -
自定义编译配置
在vue.config.js中指定编译选项:
javascript
module.exports = {
transpileDependencies: ['uni-app'],
chainWebpack: (config) => {
// 自定义配置
}
} -
问题排查工具
使用npx npm-check-updates检查依赖版本差异:
bash
npx npm-check-updates -u
通过以上方案,可有效解决 uni-app 开发中的版本冲突问题。建议采用锁定版本 + 定期升级的策略,平衡稳定性与新特性。
https://q.yingjiesheng.com/forum/bk25786/tz1126289
https://q.yingjiesheng.com/forum/bk25786/tz1126290
https://q.yingjiesheng.com/forum/bk25786/tz1126291
https://q.yingjiesheng.com/forum/bk25786/tz1126292
https://q.yingjiesheng.com/forum/bk25786/tz1126293
https://q.yingjiesheng.com/forum/bk25786/tz1126294
https://q.yingjiesheng.com/forum/bk25786/tz1126295
https://q.yingjiesheng.com/forum/bk25786/tz1126296
https://q.yingjiesheng.com/forum/bk25786/tz1126297
https://q.yingjiesheng.com/forum/bk25786/tz1126298
https://q.yingjiesheng.com/forum/bk25786/tz1126299
https://q.yingjiesheng.com/forum/bk25786/tz1126300
https://q.yingjiesheng.com/forum/bk25786/tz1126301
https://q.yingjiesheng.com/forum/bk25786/tz1126302
https://q.yingjiesheng.com/forum/bk25786/tz1126303
https://q.yingjiesheng.com/forum/bk25786/tz1126304
https://q.yingjiesheng.com/forum/bk25786/tz1126305
https://q.yingjiesheng.com/forum/bk25786/tz1126306
https://q.yingjiesheng.com/forum/bk25786/tz1126307
https://q.yingjiesheng.com/forum/bk25786/tz1126308
https://q.yingjiesheng.com/forum/bk25786/tz1126309
https://q.yingjiesheng.com/forum/bk25786/tz1126310
https://q.yingjiesheng.com/forum/bk25786/tz1126311
https://q.yingjiesheng.com/forum/bk25786/tz1126312
https://q.yingjiesheng.com/forum/bk25786/tz1126313
https://q.yingjiesheng.com/forum/bk25786/tz1126314
https://q.yingjiesheng.com/forum/bk25786/tz1126315
https://q.yingjiesheng.com/forum/bk25786/tz1126316
https://q.yingjiesheng.com/forum/bk25786/tz1126317
https://q.yingjiesheng.com/forum/bk25786/tz1126318
https://q.yingjiesheng.com/forum/bk25786/tz1126319
https://q.yingjiesheng.com/forum/bk25786/tz1126320
https://q.yingjiesheng.com/forum/bk25786/tz1126321
https://q.yingjiesheng.com/forum/bk25786/tz1126322
https://q.yingjiesheng.com/forum/bk25786/tz1126323
https://q.yingjiesheng.com/forum/bk25786/tz1126324
https://q.yingjiesheng.com/forum/bk25786/tz1126325
https://q.yingjiesheng.com/forum/bk25786/tz1126326
https://q.yingjiesheng.com/forum/bk25786/tz1126327
https://q.yingjiesheng.com/forum/bk25786/tz1126328
https://q.yingjiesheng.com/forum/bk25786/tz1126329
https://q.yingjiesheng.com/forum/bk25786/tz1126330
https://q.yingjiesheng.com/forum/bk25786/tz1126331
https://q.yingjiesheng.com/forum/bk25786/tz1126332
https://q.yingjiesheng.com/forum/bk25786/tz1126333
https://q.yingjiesheng.com/forum/bk25786/tz1126334
https://q.yingjiesheng.com/forum/bk25786/tz1126335
https://q.yingjiesheng.com/forum/bk25786/tz1126336
https://q.yingjiesheng.com/forum/bk25786/tz1126337
https://q.yingjiesheng.com/forum/bk25786/tz1126338
https://q.yingjiesheng.com/forum/bk25786/tz1126339
https://q.yingjiesheng.com/forum/bk25786/tz1126340
https://q.yingjiesheng.com/forum/bk25786/tz1126341
https://q.yingjiesheng.com/forum/bk25786/tz1126342
https://q.yingjiesheng.com/forum/bk25786/tz1126343
https://q.yingjiesheng.com/forum/bk25786/tz1126344
https://q.yingjiesheng.com/forum/bk25786/tz1126345
https://q.yingjiesheng.com/forum/bk25786/tz1126346
https://q.yingjiesheng.com/forum/bk25786/tz1126347
https://q.yingjiesheng.com/forum/bk25786/tz1126348
https://q.yingjiesheng.com/forum/bk25786/tz1126349
https://q.yingjiesheng.com/forum/bk25786/tz1126350
https://q.yingjiesheng.com/forum/bk25786/tz1126351
https://q.yingjiesheng.com/forum/bk25786/tz1126352
https://q.yingjiesheng.com/forum/bk25786/tz1126353
https://q.yingjiesheng.com/forum/bk25786/tz1126354
https://q.yingjiesheng.com/forum/bk25786/tz1126355
https://q.yingjiesheng.com/forum/bk25786/tz1126356
https://q.yingjiesheng.com/forum/bk25786/tz1126357
https://q.yingjiesheng.com/forum/bk25786/tz1126358
https://q.yingjiesheng.com/forum/bk25786/tz1126359
https://q.yingjiesheng.com/forum/bk25786/tz1126360
https://q.yingjiesheng.com/forum/bk25786/tz1126361
https://q.yingjiesheng.com/forum/bk25786/tz1126362
https://q.yingjiesheng.com/forum/bk25786/tz1126363
https://q.yingjiesheng.com/forum/bk25786/tz1126364
https://q.yingjiesheng.com/forum/bk25786/tz1126365
https://q.yingjiesheng.com/forum/bk25786/tz1126366
https://q.yingjiesheng.com/forum/bk25786/tz1126367
https://q.yingjiesheng.com/forum/bk25786/tz1126368
https://q.yingjiesheng.com/forum/bk25786/tz1126369
https://q.yingjiesheng.com/forum/bk25786/tz1126370
https://q.yingjiesheng.com/forum/bk25786/tz1126371
https://q.yingjiesheng.com/forum/bk25786/tz1126372
https://q.yingjiesheng.com/forum/bk25786/tz1126373
https://q.yingjiesheng.com/forum/bk25786/tz1126374
https://q.yingjiesheng.com/forum/bk25786/tz1126375
https://q.yingjiesheng.com/forum/bk25786/tz1126376
https://q.yingjiesheng.com/forum/bk25786/tz1126378
https://q.yingjiesheng.com/forum/bk25786/tz1126379
https://q.yingjiesheng.com/forum/bk25786/tz1126380
https://q.yingjiesheng.com/forum/bk25786/tz1126381
https://q.yingjiesheng.com/forum/bk25786/tz1126382
https://q.yingjiesheng.com/forum/bk25786/tz1126383
https://q.yingjiesheng.com/forum/bk25786/tz1126385
https://q.yingjiesheng.com/forum/bk25786/tz1126386
https://q.yingjiesheng.com/forum/bk25786/tz1126387
https://q.yingjiesheng.com/forum/bk25786/tz1126388
https://q.yingjiesheng.com/forum/bk25786/tz1126389
https://q.yingjiesheng.com/forum/bk25786/tz1126390
https://q.yingjiesheng.com/forum/bk25786/tz1126391
https://q.yingjiesheng.com/forum/bk25786/tz1126392
https://q.yingjiesheng.com/forum/bk25786/tz1126393
https://q.yingjiesheng.com/forum/bk25786/tz1126394
https://q.yingjiesheng.com/forum/bk25786/tz1126395
https://q.yingjiesheng.com/forum/bk25786/tz1126396
https://q.yingjiesheng.com/forum/bk25786/tz1126397
https://q.yingjiesheng.com/forum/bk25786/tz1126398
https://q.yingjiesheng.com/forum/bk25786/tz1126399
https://q.yingjiesheng.com/forum/bk25786/tz1126400
https://q.yingjiesheng.com/forum/bk25786/tz1126401
https://q.yingjiesheng.com/forum/bk25786/tz1126402
https://q.yingjiesheng.com/forum/bk25786/tz1126403
https://q.yingjiesheng.com/forum/bk25786/tz1126404
https://q.yingjiesheng.com/forum/bk25786/tz1126405
https://q.yingjiesheng.com/forum/bk25786/tz1126406
https://q.yingjiesheng.com/forum/bk25786/tz1126492
https://q.yingjiesheng.com/forum/bk25786/tz1126493
https://q.yingjiesheng.com/forum/bk25786/tz1126494
https://q.yingjiesheng.com/forum/bk25786/tz1126495
https://q.yingjiesheng.com/forum/bk25786/tz1126496
https://q.yingjiesheng.com/forum/bk25786/tz1126497
https://q.yingjiesheng.com/forum/bk25786/tz1126498
https://q.yingjiesheng.com/forum/bk25786/tz1126499
https://q.yingjiesheng.com/forum/bk25786/tz1126500
https://q.yingjiesheng.com/forum/bk25786/tz1126501
https://q.yingjiesheng.com/forum/bk25786/tz1126502
https://q.yingjiesheng.com/forum/bk25786/tz1126503
https://q.yingjiesheng.com/forum/bk25786/tz1126504
https://q.yingjiesheng.com/forum/bk25786/tz1126505
https://q.yingjiesheng.com/forum/bk25786/tz1126506
https://q.yingjiesheng.com/forum/bk25786/tz1126507
https://q.yingjiesheng.com/forum/bk25786/tz1126508
https://q.yingjiesheng.com/forum/bk25786/tz1126509
https://q.yingjiesheng.com/forum/bk25786/tz1126510
https://q.yingjiesheng.com/forum/bk25786/tz1126511
https://q.yingjiesheng.com/forum/bk25786/tz1126512
https://q.yingjiesheng.com/forum/bk25786/tz1126513
https://q.yingjiesheng.com/forum/bk25786/tz1126514
https://q.yingjiesheng.com/forum/bk25786/tz1126515
https://q.yingjiesheng.com/forum/bk25786/tz1126516
https://q.yingjiesheng.com/forum/bk25786/tz1126518
https://q.yingjiesheng.com/forum/bk25786/tz1126519
https://q.yingjiesheng.com/forum/bk25786/tz1126520
https://q.yingjiesheng.com/forum/bk25786/tz1126521
https://q.yingjiesheng.com/forum/bk25786/tz1126522
https://q.yingjiesheng.com/forum/bk25786/tz1126523
https://q.yingjiesheng.com/forum/bk25786/tz1126524
https://q.yingjiesheng.com/forum/bk25786/tz1126525
https://q.yingjiesheng.com/forum/bk25786/tz1126526
https://q.yingjiesheng.com/forum/bk25786/tz1126527
https://q.yingjiesheng.com/forum/bk25786/tz1126528
https://q.yingjiesheng.com/forum/bk25786/tz1126529
https://q.yingjiesheng.com/forum/bk25786/tz1126530
https://q.yingjiesheng.com/forum/bk25786/tz1126531
https://q.yingjiesheng.com/forum/bk25786/tz1126532
https://q.yingjiesheng.com/forum/bk25786/tz1126533
https://q.yingjiesheng.com/forum/bk25786/tz1126534
https://q.yingjiesheng.com/forum/bk25786/tz1126535
https://q.yingjiesheng.com/forum/bk25786/tz1126536
https://q.yingjiesheng.com/forum/bk25786/tz1126537
https://q.yingjiesheng.com/forum/bk25786/tz1126538
https://q.yingjiesheng.com/forum/bk25786/tz1126539
https://q.yingjiesheng.com/forum/bk25786/tz1126540
https://q.yingjiesheng.com/forum/bk25786/tz1126541
https://q.yingjiesheng.com/forum/bk25786/tz1126542
https://q.yingjiesheng.com/forum/bk25786/tz1126543
https://q.yingjiesheng.com/forum/bk25786/tz1126544
https://q.yingjiesheng.com/forum/bk25786/tz1126545
https://q.yingjiesheng.com/forum/bk25786/tz1126546
https://q.yingjiesheng.com/forum/bk25786/tz1126547
https://q.yingjiesheng.com/forum/bk25786/tz1126548
https://q.yingjiesheng.com/forum/bk25786/tz1126549
https://q.yingjiesheng.com/forum/bk25786/tz1126550
https://q.yingjiesheng.com/forum/bk25786/tz1126551
https://q.yingjiesheng.com/forum/bk25786/tz1126552
https://q.yingjiesheng.com/forum/bk25786/tz1126553
https://q.yingjiesheng.com/forum/bk25786/tz1126554
https://q.yingjiesheng.com/forum/bk25786/tz1126555
https://q.yingjiesheng.com/forum/bk25786/tz1126556
https://q.yingjiesheng.com/forum/bk25786/tz1126557
https://q.yingjiesheng.com/forum/bk25786/tz1126558
https://q.yingjiesheng.com/forum/bk25786/tz1126559
https://q.yingjiesheng.com/forum/bk25786/tz1126560
https://q.yingjiesheng.com/forum/bk25786/tz1126561
https://q.yingjiesheng.com/forum/bk25786/tz1126562
https://q.yingjiesheng.com/forum/bk25786/tz1126563
https://q.yingjiesheng.com/forum/bk25786/tz1126564
https://q.yingjiesheng.com/forum/bk25786/tz1126565
https://q.yingjiesheng.com/forum/bk25786/tz1126566
https://q.yingjiesheng.com/forum/bk25786/tz1126567
https://q.yingjiesheng.com/forum/bk25786/tz1126568
https://q.yingjiesheng.com/forum/bk25786/tz1126569
https://q.yingjiesheng.com/forum/bk25786/tz1126570
https://q.yingjiesheng.com/forum/bk25786/tz1126571
https://q.yingjiesheng.com/forum/bk25786/tz1126572
https://q.yingjiesheng.com/forum/bk25786/tz1126573
https://q.yingjiesheng.com/forum/bk25786/tz1126574
https://q.yingjiesheng.com/forum/bk25786/tz1126575
https://q.yingjiesheng.com/forum/bk25786/tz1126576
https://q.yingjiesheng.com/forum/bk25786/tz1126577
https://q.yingjiesheng.com/forum/bk25786/tz1126578
https://q.yingjiesheng.com/forum/bk25786/tz1126579
https://q.yingjiesheng.com/forum/bk25786/tz1126580
https://q.yingjiesheng.com/forum/bk25786/tz1126581
https://q.yingjiesheng.com/forum/bk25786/tz1126582
https://q.yingjiesheng.com/forum/bk25786/tz1126583
https://q.yingjiesheng.com/forum/bk25786/tz1126584
https://q.yingjiesheng.com/forum/bk25786/tz1126585
https://q.yingjiesheng.com/forum/bk25786/tz1126586
https://q.yingjiesheng.com/forum/bk25786/tz1126587
https://q.yingjiesheng.com/forum/bk25786/tz1126588
https://q.yingjiesheng.com/forum/bk25786/tz1126589
https://q.yingjiesheng.com/forum/bk25786/tz1126590
https://q.yingjiesheng.com/forum/bk25786/tz1126591
https://q.yingjiesheng.com/forum/bk25786/tz1126592
https://q.yingjiesheng.com/forum/bk25786/tz1126593
https://q.yingjiesheng.com/forum/bk25786/tz1126594
https://q.yingjiesheng.com/forum/bk25786/tz1126595
https://q.yingjiesheng.com/forum/bk25786/tz1126596
https://q.yingjiesheng.com/forum/bk25786/tz1126597
https://q.yingjiesheng.com/forum/bk25786/tz1126598
https://q.yingjiesheng.com/forum/bk25786/tz1126599
https://q.yingjiesheng.com/forum/bk25786/tz1126600
https://q.yingjiesheng.com/forum/bk25786/tz1126601
https://q.yingjiesheng.com/forum/bk25786/tz1126602
https://q.yingjiesheng.com/forum/bk25786/tz1126603
https://q.yingjiesheng.com/forum/bk25786/tz1126604
https://q.yingjiesheng.com/forum/bk25786/tz1126605
https://q.yingjiesheng.com/forum/bk25786/tz1126606
https://q.yingjiesheng.com/forum/bk25786/tz1126607
https://q.yingjiesheng.com/forum/bk25786/tz1126608
https://q.yingjiesheng.com/forum/bk25786/tz1126609
https://q.yingjiesheng.com/forum/bk25786/tz1126610
https://q.yingjiesheng.com/forum/bk25786/tz1126611
https://q.yingjiesheng.com/forum/bk25786/tz1126612
https://q.yingjiesheng.com/forum/bk25786/tz1126613
https://q.yingjiesheng.com/forum/bk25786/tz1126614
https://q.yingjiesheng.com/forum/bk25786/tz1126615
https://q.yingjiesheng.com/forum/bk25786/tz1126616
https://q.yingjiesheng.com/forum/bk25786/tz1126617
https://q.yingjiesheng.com/forum/bk25786/tz1126618
https://q.yingjiesheng.com/forum/bk25786/tz1126619
https://q.yingjiesheng.com/forum/bk25786/tz1126620
https://q.yingjiesheng.com/forum/bk25786/tz1126621
https://q.yingjiesheng.com/forum/bk25786/tz1126622
https://q.yingjiesheng.com/forum/bk25786/tz1126623
https://q.yingjiesheng.com/forum/bk25786/tz1126624
https://q.yingjiesheng.com/forum/bk25786/tz1126625
https://q.yingjiesheng.com/forum/bk25786/tz1126626
https://q.yingjiesheng.com/forum/bk25786/tz1126627
https://q.yingjiesheng.com/forum/bk25786/tz1126628
https://q.yingjiesheng.com/forum/bk25786/tz1126629
https://q.yingjiesheng.com/forum/bk25786/tz1126630
https://q.yingjiesheng.com/forum/bk25786/tz1126631
https://q.yingjiesheng.com/forum/bk25786/tz1126632
https://q.yingjiesheng.com/forum/bk25786/tz1126633
https://q.yingjiesheng.com/forum/bk25786/tz1126634
https://q.yingjiesheng.com/forum/bk25786/tz1126635
https://q.yingjiesheng.com/forum/bk25786/tz1126636
https://q.yingjiesheng.com/forum/bk25786/tz1126637
https://q.yingjiesheng.com/forum/bk25786/tz1126638
https://q.yingjiesheng.com/forum/bk25786/tz1126639
https://q.yingjiesheng.com/forum/bk25786/tz1126640
https://q.yingjiesheng.com/forum/bk25786/tz1126641
https://q.yingjiesheng.com/forum/bk25786/tz1126642
https://q.yingjiesheng.com/forum/bk25786/tz1126643
https://q.yingjiesheng.com/forum/bk25786/tz1126644
https://q.yingjiesheng.com/forum/bk25786/tz1126645
https://q.yingjiesheng.com/forum/bk25786/tz1126646
https://q.yingjiesheng.com/forum/bk25786/tz1126647
https://q.yingjiesheng.com/forum/bk25786/tz1126648
https://q.yingjiesheng.com/forum/bk25786/tz1126649
https://q.yingjiesheng.com/forum/bk25786/tz1126650
https://q.yingjiesheng.com/forum/bk25786/tz1126651
https://q.yingjiesheng.com/forum/bk25786/tz1126652
https://q.yingjiesheng.com/forum/bk25786/tz1126653
https://q.yingjiesheng.com/forum/bk25786/tz1126654
https://q.yingjiesheng.com/forum/bk25786/tz1126655
https://q.yingjiesheng.com/forum/bk25786/tz1126656
https://q.yingjiesheng.com/forum/bk25786/tz1126657
https://q.yingjiesheng.com/forum/bk25786/tz1126658
https://q.yingjiesheng.com/forum/bk25786/tz1126659
https://q.yingjiesheng.com/forum/bk25786/tz1126660
https://q.yingjiesheng.com/forum/bk25786/tz1126661
https://q.yingjiesheng.com/forum/bk25786/tz1126662
https://q.yingjiesheng.com/forum/bk25786/tz1126663
https://q.yingjiesheng.com/forum/bk25786/tz1126664
https://q.yingjiesheng.com/forum/bk25786/tz1126665
https://q.yingjiesheng.com/forum/bk25786/tz1126666
https://q.yingjiesheng.com/forum/bk25786/tz1126667
https://q.yingjiesheng.com/forum/bk25786/tz1126668
https://q.yingjiesheng.com/forum/bk25786/tz1126669
https://q.yingjiesheng.com/forum/bk25786/tz1126670
https://q.yingjiesheng.com/forum/bk25786/tz1126671
https://q.yingjiesheng.com/forum/bk25786/tz1126672
https://q.yingjiesheng.com/forum/bk25786/tz1126673
https://q.yingjiesheng.com/forum/bk25786/tz1126674
https://q.yingjiesheng.com/forum/bk25786/tz1126675
https://q.yingjiesheng.com/forum/bk25786/tz1126676
https://q.yingjiesheng.com/forum/bk25786/tz1126677
https://q.yingjiesheng.com/forum/bk25786/tz1126678
https://q.yingjiesheng.com/forum/bk25786/tz1126679
https://q.yingjiesheng.com/forum/bk25786/tz1126680
https://q.yingjiesheng.com/forum/bk25786/tz1126681
https://q.yingjiesheng.com/forum/bk25786/tz1126682
https://q.yingjiesheng.com/forum/bk25786/tz1126683
https://q.yingjiesheng.com/forum/bk25786/tz1126684
https://q.yingjiesheng.com/forum/bk25786/tz1126685
https://q.yingjiesheng.com/forum/bk25786/tz1126686
https://q.yingjiesheng.com/forum/bk25786/tz1126687
https://q.yingjiesheng.com/forum/bk25786/tz1126688
https://q.yingjiesheng.com/forum/bk25786/tz1126689
https://q.yingjiesheng.com/forum/bk25786/tz1126690
https://q.yingjiesheng.com/forum/bk25786/tz1126691
https://q.yingjiesheng.com/forum/bk25786/tz1126692
https://q.yingjiesheng.com/forum/bk25786/tz1126693
https://q.yingjiesheng.com/forum/bk25786/tz1126694
https://q.yingjiesheng.com/forum/bk25786/tz1126695
https://q.yingjiesheng.com/forum/bk25786/tz1126696
https://q.yingjiesheng.com/forum/bk25786/tz1126697
https://q.yingjiesheng.com/forum/bk25786/tz1126698
https://q.yingjiesheng.com/forum/bk25786/tz1126699
https://q.yingjiesheng.com/forum/bk25786/tz1126700
https://q.yingjiesheng.com/forum/bk25786/tz1126701
https://q.yingjiesheng.com/forum/bk25786/tz1126702
https://q.yingjiesheng.com/forum/bk25786/tz1126703
https://q.yingjiesheng.com/forum/bk25786/tz1126704
https://q.yingjiesheng.com/forum/bk25786/tz1126705
https://q.yingjiesheng.com/forum/bk25786/tz1126706
https://q.yingjiesheng.com/forum/bk25786/tz1126707
https://q.yingjiesheng.com/forum/bk25786/tz1126708
https://q.yingjiesheng.com/forum/bk25786/tz1126709
https://q.yingjiesheng.com/forum/bk25786/tz1126710
https://q.yingjiesheng.com/forum/bk25786/tz1126711
https://q.yingjiesheng.com/forum/bk25786/tz1126712
https://q.yingjiesheng.com/forum/bk25786/tz1126713
https://q.yingjiesheng.com/forum/bk25786/tz1126714
https://q.yingjiesheng.com/forum/bk25786/tz1126715
https://q.yingjiesheng.com/forum/bk25786/tz1126716
https://q.yingjiesheng.com/forum/bk25786/tz1126717
https://q.yingjiesheng.com/forum/bk25786/tz1126718
https://q.yingjiesheng.com/forum/bk25786/tz1126719
https://q.yingjiesheng.com/forum/bk25786/tz1126720
https://q.yingjiesheng.com/forum/bk25786/tz1126721
https://q.yingjiesheng.com/forum/bk25786/tz1126722
https://q.yingjiesheng.com/forum/bk25786/tz1126723
https://q.yingjiesheng.com/forum/bk25786/tz1126724
https://q.yingjiesheng.com/forum/bk25786/tz1126725
https://q.yingjiesheng.com/forum/bk25786/tz1126726
https://q.yingjiesheng.com/forum/bk25786/tz1126727
https://q.yingjiesheng.com/forum/bk25786/tz1126728
https://q.yingjiesheng.com/forum/bk25786/tz1126729
https://q.yingjiesheng.com/forum/bk25786/tz1126730
https://q.yingjiesheng.com/forum/bk25786/tz1126731
https://q.yingjiesheng.com/forum/bk25786/tz1126732
https://q.yingjiesheng.com/forum/bk25786/tz1126733
https://q.yingjiesheng.com/forum/bk25786/tz1126734
https://q.yingjiesheng.com/forum/bk25786/tz1126735
https://q.yingjiesheng.com/forum/bk25786/tz1126736
https://q.yingjiesheng.com/forum/bk25786/tz1126737
https://q.yingjiesheng.com/forum/bk25786/tz1126738
https://q.yingjiesheng.com/forum/bk25786/tz1126739
https://q.yingjiesheng.com/forum/bk25786/tz1126740
https://q.yingjiesheng.com/forum/bk25786/tz1126741
https://q.yingjiesheng.com/forum/bk25786/tz1126742
https://q.yingjiesheng.com/forum/bk25786/tz1126743
https://q.yingjiesheng.com/forum/bk25786/tz1126744
https://q.yingjiesheng.com/forum/bk25786/tz1126745
https://q.yingjiesheng.com/forum/bk25786/tz1126746
https://q.yingjiesheng.com/forum/bk25786/tz1126747
https://q.yingjiesheng.com/forum/bk25786/tz1126748
https://q.yingjiesheng.com/forum/bk25786/tz1126749
https://q.yingjiesheng.com/forum/bk25786/tz1126750
https://q.yingjiesheng.com/forum/bk25786/tz1126751
https://q.yingjiesheng.com/forum/bk25786/tz1126752
https://q.yingjiesheng.com/forum/bk25786/tz1126753
https://q.yingjiesheng.com/forum/bk25786/tz1126754
https://q.yingjiesheng.com/forum/bk25786/tz1126755
https://q.yingjiesheng.com/forum/bk25786/tz1126756
https://q.yingjiesheng.com/forum/bk25786/tz1126757
https://q.yingjiesheng.com/forum/bk25786/tz1126758
https://q.yingjiesheng.com/forum/bk25786/tz1126759
https://q.yingjiesheng.com/forum/bk25786/tz1126760
https://q.yingjiesheng.com/forum/bk25786/tz1126761
https://q.yingjiesheng.com/forum/bk25786/tz1126762
https://q.yingjiesheng.com/forum/bk25786/tz1126763
https://q.yingjiesheng.com/forum/bk25786/tz1126764
https://q.yingjiesheng.com/forum/bk25786/tz1126765
https://q.yingjiesheng.com/forum/bk25786/tz1126766
https://q.yingjiesheng.com/forum/bk25786/tz1126767
https://q.yingjiesheng.com/forum/bk25786/tz1126768
https://q.yingjiesheng.com/forum/bk25786/tz1126769
https://q.yingjiesheng.com/forum/bk25786/tz1126770
https://q.yingjiesheng.com/forum/bk25786/tz1126771
https://q.yingjiesheng.com/forum/bk25786/tz1126772
https://q.yingjiesheng.com/forum/bk25786/tz1126773
https://q.yingjiesheng.com/forum/bk25786/tz1126774
https://q.yingjiesheng.com/forum/bk25786/tz1126775
https://q.yingjiesheng.com/forum/bk25786/tz1126776
https://q.yingjiesheng.com/forum/bk25786/tz1126777
https://q.yingjiesheng.com/forum/bk25786/tz1126778
https://q.yingjiesheng.com/forum/bk25786/tz1126779
https://q.yingjiesheng.com/forum/bk25786/tz1126780
https://q.yingjiesheng.com/forum/bk25786/tz1126781
https://q.yingjiesheng.com/forum/bk25786/tz1126782
https://q.yingjiesheng.com/forum/bk25786/tz1126783
https://q.yingjiesheng.com/forum/bk25786/tz1126784
https://q.yingjiesheng.com/forum/bk25786/tz1126785
https://q.yingjiesheng.com/forum/bk25786/tz1126786
https://q.yingjiesheng.com/forum/bk25786/tz1126787
https://q.yingjiesheng.com/forum/bk25786/tz1126788
https://q.yingjiesheng.com/forum/bk25786/tz1126789
https://q.yingjiesheng.com/forum/bk25786/tz1126790
https://q.yingjiesheng.com/forum/bk25786/tz1126791
https://q.yingjiesheng.com/forum/bk25786/tz1126792
https://q.yingjiesheng.com/forum/bk25786/tz1126793
https://q.yingjiesheng.com/forum/bk25786/tz1126794
https://q.yingjiesheng.com/forum/bk25786/tz1126795
https://q.yingjiesheng.com/forum/bk25786/tz1126796
https://q.yingjiesheng.com/forum/bk25786/tz1126797
https://q.yingjiesheng.com/forum/bk25786/tz1126798
https://q.yingjiesheng.com/forum/bk25786/tz1126799
https://q.yingjiesheng.com/forum/bk25786/tz1126800
https://q.yingjiesheng.com/forum/bk25786/tz1126801
https://q.yingjiesheng.com/forum/bk25786/tz1126802
https://q.yingjiesheng.com/forum/bk25786/tz1126803
https://q.yingjiesheng.com/forum/bk25786/tz1126804
https://q.yingjiesheng.com/forum/bk25786/tz1126805
https://q.yingjiesheng.com/forum/bk25786/tz1126806
https://q.yingjiesheng.com/forum/bk25786/tz1126807
https://q.yingjiesheng.com/forum/bk25786/tz1126808
https://q.yingjiesheng.com/forum/bk25786/tz1126809
https://q.yingjiesheng.com/forum/bk25786/tz1126810
https://q.yingjiesheng.com/forum/bk25786/tz1126811
https://q.yingjiesheng.com/forum/bk25786/tz1126812
https://q.yingjiesheng.com/forum/bk25786/tz1126813
https://q.yingjiesheng.com/forum/bk25786/tz1126814
https://q.yingjiesheng.com/forum/bk25786/tz1126815
https://q.yingjiesheng.com/forum/bk25786/tz1126816
https://q.yingjiesheng.com/forum/bk25786/tz1126817
https://q.yingjiesheng.com/forum/bk25786/tz1126818
https://q.yingjiesheng.com/forum/bk25786/tz1126819
https://q.yingjiesheng.com/forum/bk25786/tz1126820
https://q.yingjiesheng.com/forum/bk25786/tz1126821
https://q.yingjiesheng.com/forum/bk25786/tz1126822
https://q.yingjiesheng.com/forum/bk25786/tz1126823
https://q.yingjiesheng.com/forum/bk25786/tz1126824
https://q.yingjiesheng.com/forum/bk25786/tz1126825
https://q.yingjiesheng.com/forum/bk25786/tz1126826
https://q.yingjiesheng.com/forum/bk25786/tz1126827
https://q.yingjiesheng.com/forum/bk25786/tz1126828
https://q.yingjiesheng.com/forum/bk25786/tz1126829
https://q.yingjiesheng.com/forum/bk25786/tz1126830
https://q.yingjiesheng.com/forum/bk25786/tz1126831
https://q.yingjiesheng.com/forum/bk25786/tz1126832
https://q.yingjiesheng.com/forum/bk25786/tz1126833
https://q.yingjiesheng.com/forum/bk25786/tz1126834
https://q.yingjiesheng.com/forum/bk25786/tz1126835
https://q.yingjiesheng.com/forum/bk25786/tz1126836
https://q.yingjiesheng.com/forum/bk25786/tz1126837
https://q.yingjiesheng.com/forum/bk25786/tz1126838
https://q.yingjiesheng.com/forum/bk25786/tz1126839
https://q.yingjiesheng.com/forum/bk25786/tz1126840
https://q.yingjiesheng.com/forum/bk25786/tz1126841
https://q.yingjiesheng.com/forum/bk25786/tz1126842
https://q.yingjiesheng.com/forum/bk25786/tz1126843
https://q.yingjiesheng.com/forum/bk25786/tz1126844
https://q.yingjiesheng.com/forum/bk25786/tz1126845
https://q.yingjiesheng.com/forum/bk25786/tz1126846
https://q.yingjiesheng.com/forum/bk25786/tz1126847
https://q.yingjiesheng.com/forum/bk25786/tz1126848
https://q.yingjiesheng.com/forum/bk25786/tz1126849
https://q.yingjiesheng.com/forum/bk25786/tz1126850
https://q.yingjiesheng.com/forum/bk25786/tz1126851
https://q.yingjiesheng.com/forum/bk25786/tz1126852
https://q.yingjiesheng.com/forum/bk25786/tz1126853
https://q.yingjiesheng.com/forum/bk25786/tz1126854
https://q.yingjiesheng.com/forum/bk25786/tz1126855
https://q.yingjiesheng.com/forum/bk25786/tz1126856
https://q.yingjiesheng.com/forum/bk25786/tz1126857
https://q.yingjiesheng.com/forum/bk25786/tz1126858
https://q.yingjiesheng.com/forum/bk25786/tz1126859
https://q.yingjiesheng.com/forum/bk25786/tz1126860
https://q.yingjiesheng.com/forum/bk25786/tz1126861
https://q.yingjiesheng.com/forum/bk25786/tz1126862
https://q.yingjiesheng.com/forum/bk25786/tz1126863
https://q.yingjiesheng.com/forum/bk25786/tz1126864
https://q.yingjiesheng.com/forum/bk25786/tz1126865
https://q.yingjiesheng.com/forum/bk25786/tz1126866
https://q.yingjiesheng.com/forum/bk25786/tz1126867
https://q.yingjiesheng.com/forum/bk25786/tz1126868
https://q.yingjiesheng.com/forum/bk25786/tz1126869
https://q.yingjiesheng.com/forum/bk25786/tz1126870
https://q.yingjiesheng.com/forum/bk25786/tz1126871
https://q.yingjiesheng.com/forum/bk25786/tz1126872
https://q.yingjiesheng.com/forum/bk25786/tz1126873
https://q.yingjiesheng.com/forum/bk25786/tz1126874
https://q.yingjiesheng.com/forum/bk25786/tz1126875
https://q.yingjiesheng.com/forum/bk25786/tz1126876
https://q.yingjiesheng.com/forum/bk25786/tz1126877
https://q.yingjiesheng.com/forum/bk25786/tz1126878
https://q.yingjiesheng.com/forum/bk25786/tz1126879
https://q.yingjiesheng.com/forum/bk25786/tz1126880
https://q.yingjiesheng.com/forum/bk25786/tz1126881
https://q.yingjiesheng.com/forum/bk25786/tz1126882
https://q.yingjiesheng.com/forum/bk25786/tz1126883
https://q.yingjiesheng.com/forum/bk25786/tz1126884
https://q.yingjiesheng.com/forum/bk25786/tz1126885
https://q.yingjiesheng.com/forum/bk25786/tz1126886
https://q.yingjiesheng.com/forum/bk25786/tz1126887
https://q.yingjiesheng.com/forum/bk25786/tz1126888
https://q.yingjiesheng.com/forum/bk25786/tz1126889
https://q.yingjiesheng.com/forum/bk25786/tz1126890
https://q.yingjiesheng.com/forum/bk25786/tz1126891
https://q.yingjiesheng.com/forum/bk25786/tz1126892
https://q.yingjiesheng.com/forum/bk25786/tz1126893
https://q.yingjiesheng.com/forum/bk25786/tz1126894
https://q.yingjiesheng.com/forum/bk25786/tz1126895
https://q.yingjiesheng.com/forum/bk25786/tz1126896
https://q.yingjiesheng.com/forum/bk25786/tz1126897
https://q.yingjiesheng.com/forum/bk25786/tz1126898
https://q.yingjiesheng.com/forum/bk25786/tz1126899
https://q.yingjiesheng.com/forum/bk25786/tz1126900
https://q.yingjiesheng.com/forum/bk25786/tz1126901
https://q.yingjiesheng.com/forum/bk25786/tz1126902
https://q.yingjiesheng.com/forum/bk25786/tz1126903
https://q.yingjiesheng.com/forum/bk25786/tz1126904
https://q.yingjiesheng.com/forum/bk25786/tz1126905
https://q.yingjiesheng.com/forum/bk25786/tz1126906
https://q.yingjiesheng.com/forum/bk25786/tz1126907
https://q.yingjiesheng.com/forum/bk25786/tz1126908
https://q.yingjiesheng.com/forum/bk25786/tz1126909
https://q.yingjiesheng.com/forum/bk25786/tz1126910
https://q.yingjiesheng.com/forum/bk25786/tz1126911
https://q.yingjiesheng.com/forum/bk25786/tz1126912
https://q.yingjiesheng.com/forum/bk25786/tz1126913
https://q.yingjiesheng.com/forum/bk25786/tz1126914
https://q.yingjiesheng.com/forum/bk25786/tz1126915
https://q.yingjiesheng.com/forum/bk25786/tz1126916
https://q.yingjiesheng.com/forum/bk25786/tz1126917
https://q.yingjiesheng.com/forum/bk25786/tz1126918
https://q.yingjiesheng.com/forum/bk25786/tz1126919
https://q.yingjiesheng.com/forum/bk25786/tz1126920
https://q.yingjiesheng.com/forum/bk25786/tz1126921
https://q.yingjiesheng.com/forum/bk25786/tz1126922
https://q.yingjiesheng.com/forum/bk25786/tz1126923
https://q.yingjiesheng.com/forum/bk25786/tz1126924
https://q.yingjiesheng.com/forum/bk25786/tz1126925
https://q.yingjiesheng.com/forum/bk25786/tz1126926
https://q.yingjiesheng.com/forum/bk25786/tz1126927
https://q.yingjiesheng.com/forum/bk25786/tz1126928
https://q.yingjiesheng.com/forum/bk25786/tz1126929
https://q.yingjiesheng.com/forum/bk25786/tz1126930
https://q.yingjiesheng.com/forum/bk25786/tz1126931
https://q.yingjiesheng.com/forum/bk25786/tz1126932
https://q.yingjiesheng.com/forum/bk25786/tz1126933
https://q.yingjiesheng.com/forum/bk25786/tz1126934
https://q.yingjiesheng.com/forum/bk25786/tz1126935
https://q.yingjiesheng.com/forum/bk25786/tz1126936
https://q.yingjiesheng.com/forum/bk25786/tz1126937
https://q.yingjiesheng.com/forum/bk25786/tz1126938
https://q.yingjiesheng.com/forum/bk25786/tz1126939
https://q.yingjiesheng.com/forum/bk25786/tz1126940
https://q.yingjiesheng.com/forum/bk25786/tz1126941
https://q.yingjiesheng.com/forum/bk25786/tz1126942
https://q.yingjiesheng.com/forum/bk25786/tz1126943
https://q.yingjiesheng.com/forum/bk25786/tz1126944
https://q.yingjiesheng.com/forum/bk25786/tz1126945
https://q.yingjiesheng.com/forum/bk25786/tz1126946
https://q.yingjiesheng.com/forum/bk25786/tz1126947
https://q.yingjiesheng.com/forum/bk25786/tz1126948
https://q.yingjiesheng.com/forum/bk25786/tz1126949
https://q.yingjiesheng.com/forum/bk25786/tz1126950
https://q.yingjiesheng.com/forum/bk25786/tz1126951
https://q.yingjiesheng.com/forum/bk25786/tz1126952
https://q.yingjiesheng.com/forum/bk25786/tz1126953
https://q.yingjiesheng.com/forum/bk25786/tz1126954
https://q.yingjiesheng.com/forum/bk25786/tz1126955
https://q.yingjiesheng.com/forum/bk25786/tz1126956
https://q.yingjiesheng.com/forum/bk25786/tz1126957
https://q.yingjiesheng.com/forum/bk25786/tz1126958
https://q.yingjiesheng.com/forum/bk25786/tz1126959
在 uni-app 开发中,环境版本与编译工具版本冲突是常见问题,以下是系统性解决方案:
- 统一版本管理
通过package.json锁定依赖版本,避免自动升级导致的冲突。
json
{
"devDependencies": {
"@dcloudio/types": "3.4.17",
"@dcloudio/uni-app-cli": "3.4.17",
"@dcloudio/uni-cli-shared": "3.4.17"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}
使用npm install --save-exact精确安装指定版本。
团队协作时共享package-lock.json确保依赖一致性。 - 清理缓存与重新安装
bash删除缓存与依赖
rm -rf node_modules
npm cache clean --force
重新安装
npm install
- 手动指定 CLI 版本
通过npx临时使用特定版本的编译工具:
bash
npx @dcloudio/uni-cli-shared@3.4.17 build --platform h5 - 环境变量配置
在项目根目录创建.env文件,指定 HBuilderX CLI 路径:
bash
UNI_CLI_PATH=./node_modules/@dcloudio/uni-cli-shared/bin/uni.js - 版本兼容性检查
参考官方版本映射表:
HBuilderX 版本 uni-app 版本
3.7.0+ 3.4.17+
3.6.0 3.4.0 - 降级 / 升级策略
冲突报错:优先升级到最新稳定版(推荐)。
bash
npm update @dcloudio/uni-app-cli
兼容性问题:回退到已知兼容版本。
bash
npm install @dcloudio/uni-app-cli@3.4.17
-
插件与 SDK 适配
检查项目中使用的第三方插件是否支持当前 uni-app 版本,必要时联系插件作者更新。 -
开发工具同步升级
确保 HBuilderX 为最新版本,避免 IDE 与 CLI 版本不匹配。 -
自定义编译配置
在vue.config.js中指定编译选项:
javascript
module.exports = {
transpileDependencies: ['uni-app'],
chainWebpack: (config) => {
// 自定义配置
}
} -
问题排查工具
使用npx npm-check-updates检查依赖版本差异:
bash
npx npm-check-updates -u
通过以上方案,可有效解决 uni-app 开发中的版本冲突问题。建议采用锁定版本 + 定期升级的策略,平衡稳定性与新特性。
https://q.yingjiesheng.com/forum/bk25786/tz1126289
https://q.yingjiesheng.com/forum/bk25786/tz1126290
https://q.yingjiesheng.com/forum/bk25786/tz1126291
https://q.yingjiesheng.com/forum/bk25786/tz1126292
https://q.yingjiesheng.com/forum/bk25786/tz1126293
https://q.yingjiesheng.com/forum/bk25786/tz1126294
https://q.yingjiesheng.com/forum/bk25786/tz1126295
https://q.yingjiesheng.com/forum/bk25786/tz1126296
https://q.yingjiesheng.com/forum/bk25786/tz1126297
https://q.yingjiesheng.com/forum/bk25786/tz1126298
https://q.yingjiesheng.com/forum/bk25786/tz1126299
https://q.yingjiesheng.com/forum/bk25786/tz1126300
https://q.yingjiesheng.com/forum/bk25786/tz1126301
https://q.yingjiesheng.com/forum/bk25786/tz1126302
https://q.yingjiesheng.com/forum/bk25786/tz1126303
https://q.yingjiesheng.com/forum/bk25786/tz1126304
https://q.yingjiesheng.com/forum/bk25786/tz1126305
https://q.yingjiesheng.com/forum/bk25786/tz1126306
https://q.yingjiesheng.com/forum/bk25786/tz1126307
https://q.yingjiesheng.com/forum/bk25786/tz1126308
https://q.yingjiesheng.com/forum/bk25786/tz1126309
https://q.yingjiesheng.com/forum/bk25786/tz1126310
https://q.yingjiesheng.com/forum/bk25786/tz1126311
https://q.yingjiesheng.com/forum/bk25786/tz1126312
https://q.yingjiesheng.com/forum/bk25786/tz1126313
https://q.yingjiesheng.com/forum/bk25786/tz1126314
https://q.yingjiesheng.com/forum/bk25786/tz1126315
https://q.yingjiesheng.com/forum/bk25786/tz1126316
https://q.yingjiesheng.com/forum/bk25786/tz1126317
https://q.yingjiesheng.com/forum/bk25786/tz1126318
https://q.yingjiesheng.com/forum/bk25786/tz1126319
https://q.yingjiesheng.com/forum/bk25786/tz1126320
https://q.yingjiesheng.com/forum/bk25786/tz1126321
https://q.yingjiesheng.com/forum/bk25786/tz1126322
https://q.yingjiesheng.com/forum/bk25786/tz1126323
https://q.yingjiesheng.com/forum/bk25786/tz1126324
https://q.yingjiesheng.com/forum/bk25786/tz1126325
https://q.yingjiesheng.com/forum/bk25786/tz1126326
https://q.yingjiesheng.com/forum/bk25786/tz1126327
https://q.yingjiesheng.com/forum/bk25786/tz1126328
https://q.yingjiesheng.com/forum/bk25786/tz1126329
https://q.yingjiesheng.com/forum/bk25786/tz1126330
https://q.yingjiesheng.com/forum/bk25786/tz1126331
https://q.yingjiesheng.com/forum/bk25786/tz1126332
https://q.yingjiesheng.com/forum/bk25786/tz1126333
https://q.yingjiesheng.com/forum/bk25786/tz1126334
https://q.yingjiesheng.com/forum/bk25786/tz1126335
https://q.yingjiesheng.com/forum/bk25786/tz1126336
https://q.yingjiesheng.com/forum/bk25786/tz1126337
https://q.yingjiesheng.com/forum/bk25786/tz1126338
https://q.yingjiesheng.com/forum/bk25786/tz1126339
https://q.yingjiesheng.com/forum/bk25786/tz1126340
https://q.yingjiesheng.com/forum/bk25786/tz1126341
https://q.yingjiesheng.com/forum/bk25786/tz1126342
https://q.yingjiesheng.com/forum/bk25786/tz1126343
https://q.yingjiesheng.com/forum/bk25786/tz1126344
https://q.yingjiesheng.com/forum/bk25786/tz1126345
https://q.yingjiesheng.com/forum/bk25786/tz1126346
https://q.yingjiesheng.com/forum/bk25786/tz1126347
https://q.yingjiesheng.com/forum/bk25786/tz1126348
https://q.yingjiesheng.com/forum/bk25786/tz1126349
https://q.yingjiesheng.com/forum/bk25786/tz1126350
https://q.yingjiesheng.com/forum/bk25786/tz1126351
https://q.yingjiesheng.com/forum/bk25786/tz1126352
https://q.yingjiesheng.com/forum/bk25786/tz1126353
https://q.yingjiesheng.com/forum/bk25786/tz1126354
https://q.yingjiesheng.com/forum/bk25786/tz1126355
https://q.yingjiesheng.com/forum/bk25786/tz1126356
https://q.yingjiesheng.com/forum/bk25786/tz1126357
https://q.yingjiesheng.com/forum/bk25786/tz1126358
https://q.yingjiesheng.com/forum/bk25786/tz1126359
https://q.yingjiesheng.com/forum/bk25786/tz1126360
https://q.yingjiesheng.com/forum/bk25786/tz1126361
https://q.yingjiesheng.com/forum/bk25786/tz1126362
https://q.yingjiesheng.com/forum/bk25786/tz1126363
https://q.yingjiesheng.com/forum/bk25786/tz1126364
https://q.yingjiesheng.com/forum/bk25786/tz1126365
https://q.yingjiesheng.com/forum/bk25786/tz1126366
https://q.yingjiesheng.com/forum/bk25786/tz1126367
https://q.yingjiesheng.com/forum/bk25786/tz1126368
https://q.yingjiesheng.com/forum/bk25786/tz1126369
https://q.yingjiesheng.com/forum/bk25786/tz1126370
https://q.yingjiesheng.com/forum/bk25786/tz1126371
https://q.yingjiesheng.com/forum/bk25786/tz1126372
https://q.yingjiesheng.com/forum/bk25786/tz1126373
https://q.yingjiesheng.com/forum/bk25786/tz1126374
https://q.yingjiesheng.com/forum/bk25786/tz1126375
https://q.yingjiesheng.com/forum/bk25786/tz1126376
https://q.yingjiesheng.com/forum/bk25786/tz1126378
https://q.yingjiesheng.com/forum/bk25786/tz1126379
https://q.yingjiesheng.com/forum/bk25786/tz1126380
https://q.yingjiesheng.com/forum/bk25786/tz1126381
https://q.yingjiesheng.com/forum/bk25786/tz1126382
https://q.yingjiesheng.com/forum/bk25786/tz1126383
https://q.yingjiesheng.com/forum/bk25786/tz1126385
https://q.yingjiesheng.com/forum/bk25786/tz1126386
https://q.yingjiesheng.com/forum/bk25786/tz1126387
https://q.yingjiesheng.com/forum/bk25786/tz1126388
https://q.yingjiesheng.com/forum/bk25786/tz1126389
https://q.yingjiesheng.com/forum/bk25786/tz1126390
https://q.yingjiesheng.com/forum/bk25786/tz1126391
https://q.yingjiesheng.com/forum/bk25786/tz1126392
https://q.yingjiesheng.com/forum/bk25786/tz1126393
https://q.yingjiesheng.com/forum/bk25786/tz1126394
https://q.yingjiesheng.com/forum/bk25786/tz1126395
https://q.yingjiesheng.com/forum/bk25786/tz1126396
https://q.yingjiesheng.com/forum/bk25786/tz1126397
https://q.yingjiesheng.com/forum/bk25786/tz1126398
https://q.yingjiesheng.com/forum/bk25786/tz1126399
https://q.yingjiesheng.com/forum/bk25786/tz1126400
https://q.yingjiesheng.com/forum/bk25786/tz1126401
https://q.yingjiesheng.com/forum/bk25786/tz1126402
https://q.yingjiesheng.com/forum/bk25786/tz1126403
https://q.yingjiesheng.com/forum/bk25786/tz1126404
https://q.yingjiesheng.com/forum/bk25786/tz1126405
https://q.yingjiesheng.com/forum/bk25786/tz1126406
https://q.yingjiesheng.com/forum/bk25786/tz1126492
https://q.yingjiesheng.com/forum/bk25786/tz1126493
https://q.yingjiesheng.com/forum/bk25786/tz1126494
https://q.yingjiesheng.com/forum/bk25786/tz1126495
https://q.yingjiesheng.com/forum/bk25786/tz1126496
https://q.yingjiesheng.com/forum/bk25786/tz1126497
https://q.yingjiesheng.com/forum/bk25786/tz1126498
https://q.yingjiesheng.com/forum/bk25786/tz1126499
https://q.yingjiesheng.com/forum/bk25786/tz1126500
https://q.yingjiesheng.com/forum/bk25786/tz1126501
https://q.yingjiesheng.com/forum/bk25786/tz1126502
https://q.yingjiesheng.com/forum/bk25786/tz1126503
https://q.yingjiesheng.com/forum/bk25786/tz1126504
https://q.yingjiesheng.com/forum/bk25786/tz1126505
https://q.yingjiesheng.com/forum/bk25786/tz1126506
https://q.yingjiesheng.com/forum/bk25786/tz1126507
https://q.yingjiesheng.com/forum/bk25786/tz1126508
https://q.yingjiesheng.com/forum/bk25786/tz1126509
https://q.yingjiesheng.com/forum/bk25786/tz1126510
https://q.yingjiesheng.com/forum/bk25786/tz1126511
https://q.yingjiesheng.com/forum/bk25786/tz1126512
https://q.yingjiesheng.com/forum/bk25786/tz1126513
https://q.yingjiesheng.com/forum/bk25786/tz1126514
https://q.yingjiesheng.com/forum/bk25786/tz1126515
https://q.yingjiesheng.com/forum/bk25786/tz1126516
https://q.yingjiesheng.com/forum/bk25786/tz1126518
https://q.yingjiesheng.com/forum/bk25786/tz1126519
https://q.yingjiesheng.com/forum/bk25786/tz1126520
https://q.yingjiesheng.com/forum/bk25786/tz1126521
https://q.yingjiesheng.com/forum/bk25786/tz1126522
https://q.yingjiesheng.com/forum/bk25786/tz1126523
https://q.yingjiesheng.com/forum/bk25786/tz1126524
https://q.yingjiesheng.com/forum/bk25786/tz1126525
https://q.yingjiesheng.com/forum/bk25786/tz1126526
https://q.yingjiesheng.com/forum/bk25786/tz1126527
https://q.yingjiesheng.com/forum/bk25786/tz1126528
https://q.yingjiesheng.com/forum/bk25786/tz1126529
https://q.yingjiesheng.com/forum/bk25786/tz1126530
https://q.yingjiesheng.com/forum/bk25786/tz1126531
https://q.yingjiesheng.com/forum/bk25786/tz1126532
https://q.yingjiesheng.com/forum/bk25786/tz1126533
https://q.yingjiesheng.com/forum/bk25786/tz1126534
https://q.yingjiesheng.com/forum/bk25786/tz1126535
https://q.yingjiesheng.com/forum/bk25786/tz1126536
https://q.yingjiesheng.com/forum/bk25786/tz1126537
https://q.yingjiesheng.com/forum/bk25786/tz1126538
https://q.yingjiesheng.com/forum/bk25786/tz1126539
https://q.yingjiesheng.com/forum/bk25786/tz1126540
https://q.yingjiesheng.com/forum/bk25786/tz1126541
https://q.yingjiesheng.com/forum/bk25786/tz1126542
https://q.yingjiesheng.com/forum/bk25786/tz1126543
https://q.yingjiesheng.com/forum/bk25786/tz1126544
https://q.yingjiesheng.com/forum/bk25786/tz1126545
https://q.yingjiesheng.com/forum/bk25786/tz1126546
https://q.yingjiesheng.com/forum/bk25786/tz1126547
https://q.yingjiesheng.com/forum/bk25786/tz1126548
https://q.yingjiesheng.com/forum/bk25786/tz1126549
https://q.yingjiesheng.com/forum/bk25786/tz1126550
https://q.yingjiesheng.com/forum/bk25786/tz1126551
https://q.yingjiesheng.com/forum/bk25786/tz1126552
https://q.yingjiesheng.com/forum/bk25786/tz1126553
https://q.yingjiesheng.com/forum/bk25786/tz1126554
https://q.yingjiesheng.com/forum/bk25786/tz1126555
https://q.yingjiesheng.com/forum/bk25786/tz1126556
https://q.yingjiesheng.com/forum/bk25786/tz1126557
https://q.yingjiesheng.com/forum/bk25786/tz1126558
https://q.yingjiesheng.com/forum/bk25786/tz1126559
https://q.yingjiesheng.com/forum/bk25786/tz1126560
https://q.yingjiesheng.com/forum/bk25786/tz1126561
https://q.yingjiesheng.com/forum/bk25786/tz1126562
https://q.yingjiesheng.com/forum/bk25786/tz1126563
https://q.yingjiesheng.com/forum/bk25786/tz1126564
https://q.yingjiesheng.com/forum/bk25786/tz1126565
https://q.yingjiesheng.com/forum/bk25786/tz1126566
https://q.yingjiesheng.com/forum/bk25786/tz1126567
https://q.yingjiesheng.com/forum/bk25786/tz1126568
https://q.yingjiesheng.com/forum/bk25786/tz1126569
https://q.yingjiesheng.com/forum/bk25786/tz1126570
https://q.yingjiesheng.com/forum/bk25786/tz1126571
https://q.yingjiesheng.com/forum/bk25786/tz1126572
https://q.yingjiesheng.com/forum/bk25786/tz1126573
https://q.yingjiesheng.com/forum/bk25786/tz1126574
https://q.yingjiesheng.com/forum/bk25786/tz1126575
https://q.yingjiesheng.com/forum/bk25786/tz1126576
https://q.yingjiesheng.com/forum/bk25786/tz1126577
https://q.yingjiesheng.com/forum/bk25786/tz1126578
https://q.yingjiesheng.com/forum/bk25786/tz1126579
https://q.yingjiesheng.com/forum/bk25786/tz1126580
https://q.yingjiesheng.com/forum/bk25786/tz1126581
https://q.yingjiesheng.com/forum/bk25786/tz1126582
https://q.yingjiesheng.com/forum/bk25786/tz1126583
https://q.yingjiesheng.com/forum/bk25786/tz1126584
https://q.yingjiesheng.com/forum/bk25786/tz1126585
https://q.yingjiesheng.com/forum/bk25786/tz1126586
https://q.yingjiesheng.com/forum/bk25786/tz1126587
https://q.yingjiesheng.com/forum/bk25786/tz1126588
https://q.yingjiesheng.com/forum/bk25786/tz1126589
https://q.yingjiesheng.com/forum/bk25786/tz1126590
https://q.yingjiesheng.com/forum/bk25786/tz1126591
https://q.yingjiesheng.com/forum/bk25786/tz1126592
https://q.yingjiesheng.com/forum/bk25786/tz1126593
https://q.yingjiesheng.com/forum/bk25786/tz1126594
https://q.yingjiesheng.com/forum/bk25786/tz1126595
https://q.yingjiesheng.com/forum/bk25786/tz1126596
https://q.yingjiesheng.com/forum/bk25786/tz1126597
https://q.yingjiesheng.com/forum/bk25786/tz1126598
https://q.yingjiesheng.com/forum/bk25786/tz1126599
https://q.yingjiesheng.com/forum/bk25786/tz1126600
https://q.yingjiesheng.com/forum/bk25786/tz1126601
https://q.yingjiesheng.com/forum/bk25786/tz1126602
https://q.yingjiesheng.com/forum/bk25786/tz1126603
https://q.yingjiesheng.com/forum/bk25786/tz1126604
https://q.yingjiesheng.com/forum/bk25786/tz1126605
https://q.yingjiesheng.com/forum/bk25786/tz1126606
https://q.yingjiesheng.com/forum/bk25786/tz1126607
https://q.yingjiesheng.com/forum/bk25786/tz1126608
https://q.yingjiesheng.com/forum/bk25786/tz1126609
https://q.yingjiesheng.com/forum/bk25786/tz1126610
https://q.yingjiesheng.com/forum/bk25786/tz1126611
https://q.yingjiesheng.com/forum/bk25786/tz1126612
https://q.yingjiesheng.com/forum/bk25786/tz1126613
https://q.yingjiesheng.com/forum/bk25786/tz1126614
https://q.yingjiesheng.com/forum/bk25786/tz1126615
https://q.yingjiesheng.com/forum/bk25786/tz1126616
https://q.yingjiesheng.com/forum/bk25786/tz1126617
https://q.yingjiesheng.com/forum/bk25786/tz1126618
https://q.yingjiesheng.com/forum/bk25786/tz1126619
https://q.yingjiesheng.com/forum/bk25786/tz1126620
https://q.yingjiesheng.com/forum/bk25786/tz1126621
https://q.yingjiesheng.com/forum/bk25786/tz1126622
https://q.yingjiesheng.com/forum/bk25786/tz1126623
https://q.yingjiesheng.com/forum/bk25786/tz1126624
https://q.yingjiesheng.com/forum/bk25786/tz1126625
https://q.yingjiesheng.com/forum/bk25786/tz1126626
https://q.yingjiesheng.com/forum/bk25786/tz1126627
https://q.yingjiesheng.com/forum/bk25786/tz1126628
https://q.yingjiesheng.com/forum/bk25786/tz1126629
https://q.yingjiesheng.com/forum/bk25786/tz1126630
https://q.yingjiesheng.com/forum/bk25786/tz1126631
https://q.yingjiesheng.com/forum/bk25786/tz1126632
https://q.yingjiesheng.com/forum/bk25786/tz1126633
https://q.yingjiesheng.com/forum/bk25786/tz1126634
https://q.yingjiesheng.com/forum/bk25786/tz1126635
https://q.yingjiesheng.com/forum/bk25786/tz1126636
https://q.yingjiesheng.com/forum/bk25786/tz1126637
https://q.yingjiesheng.com/forum/bk25786/tz1126638
https://q.yingjiesheng.com/forum/bk25786/tz1126639
https://q.yingjiesheng.com/forum/bk25786/tz1126640
https://q.yingjiesheng.com/forum/bk25786/tz1126641
https://q.yingjiesheng.com/forum/bk25786/tz1126642
https://q.yingjiesheng.com/forum/bk25786/tz1126643
https://q.yingjiesheng.com/forum/bk25786/tz1126644
https://q.yingjiesheng.com/forum/bk25786/tz1126645
https://q.yingjiesheng.com/forum/bk25786/tz1126646
https://q.yingjiesheng.com/forum/bk25786/tz1126647
https://q.yingjiesheng.com/forum/bk25786/tz1126648
https://q.yingjiesheng.com/forum/bk25786/tz1126649
https://q.yingjiesheng.com/forum/bk25786/tz1126650
https://q.yingjiesheng.com/forum/bk25786/tz1126651
https://q.yingjiesheng.com/forum/bk25786/tz1126652
https://q.yingjiesheng.com/forum/bk25786/tz1126653
https://q.yingjiesheng.com/forum/bk25786/tz1126654
https://q.yingjiesheng.com/forum/bk25786/tz1126655
https://q.yingjiesheng.com/forum/bk25786/tz1126656
https://q.yingjiesheng.com/forum/bk25786/tz1126657
https://q.yingjiesheng.com/forum/bk25786/tz1126658
https://q.yingjiesheng.com/forum/bk25786/tz1126659
https://q.yingjiesheng.com/forum/bk25786/tz1126660
https://q.yingjiesheng.com/forum/bk25786/tz1126661
https://q.yingjiesheng.com/forum/bk25786/tz1126662
https://q.yingjiesheng.com/forum/bk25786/tz1126663
https://q.yingjiesheng.com/forum/bk25786/tz1126664
https://q.yingjiesheng.com/forum/bk25786/tz1126665
https://q.yingjiesheng.com/forum/bk25786/tz1126666
https://q.yingjiesheng.com/forum/bk25786/tz1126667
https://q.yingjiesheng.com/forum/bk25786/tz1126668
https://q.yingjiesheng.com/forum/bk25786/tz1126669
https://q.yingjiesheng.com/forum/bk25786/tz1126670
https://q.yingjiesheng.com/forum/bk25786/tz1126671
https://q.yingjiesheng.com/forum/bk25786/tz1126672
https://q.yingjiesheng.com/forum/bk25786/tz1126673
https://q.yingjiesheng.com/forum/bk25786/tz1126674
https://q.yingjiesheng.com/forum/bk25786/tz1126675
https://q.yingjiesheng.com/forum/bk25786/tz1126676
https://q.yingjiesheng.com/forum/bk25786/tz1126677
https://q.yingjiesheng.com/forum/bk25786/tz1126678
https://q.yingjiesheng.com/forum/bk25786/tz1126679
https://q.yingjiesheng.com/forum/bk25786/tz1126680
https://q.yingjiesheng.com/forum/bk25786/tz1126681
https://q.yingjiesheng.com/forum/bk25786/tz1126682
https://q.yingjiesheng.com/forum/bk25786/tz1126683
https://q.yingjiesheng.com/forum/bk25786/tz1126684
https://q.yingjiesheng.com/forum/bk25786/tz1126685
https://q.yingjiesheng.com/forum/bk25786/tz1126686
https://q.yingjiesheng.com/forum/bk25786/tz1126687
https://q.yingjiesheng.com/forum/bk25786/tz1126688
https://q.yingjiesheng.com/forum/bk25786/tz1126689
https://q.yingjiesheng.com/forum/bk25786/tz1126690
https://q.yingjiesheng.com/forum/bk25786/tz1126691
https://q.yingjiesheng.com/forum/bk25786/tz1126692
https://q.yingjiesheng.com/forum/bk25786/tz1126693
https://q.yingjiesheng.com/forum/bk25786/tz1126694
https://q.yingjiesheng.com/forum/bk25786/tz1126695
https://q.yingjiesheng.com/forum/bk25786/tz1126696
https://q.yingjiesheng.com/forum/bk25786/tz1126697
https://q.yingjiesheng.com/forum/bk25786/tz1126698
https://q.yingjiesheng.com/forum/bk25786/tz1126699
https://q.yingjiesheng.com/forum/bk25786/tz1126700
https://q.yingjiesheng.com/forum/bk25786/tz1126701
https://q.yingjiesheng.com/forum/bk25786/tz1126702
https://q.yingjiesheng.com/forum/bk25786/tz1126703
https://q.yingjiesheng.com/forum/bk25786/tz1126704
https://q.yingjiesheng.com/forum/bk25786/tz1126705
https://q.yingjiesheng.com/forum/bk25786/tz1126706
https://q.yingjiesheng.com/forum/bk25786/tz1126707
https://q.yingjiesheng.com/forum/bk25786/tz1126708
https://q.yingjiesheng.com/forum/bk25786/tz1126709
https://q.yingjiesheng.com/forum/bk25786/tz1126710
https://q.yingjiesheng.com/forum/bk25786/tz1126711
https://q.yingjiesheng.com/forum/bk25786/tz1126712
https://q.yingjiesheng.com/forum/bk25786/tz1126713
https://q.yingjiesheng.com/forum/bk25786/tz1126714
https://q.yingjiesheng.com/forum/bk25786/tz1126715
https://q.yingjiesheng.com/forum/bk25786/tz1126716
https://q.yingjiesheng.com/forum/bk25786/tz1126717
https://q.yingjiesheng.com/forum/bk25786/tz1126718
https://q.yingjiesheng.com/forum/bk25786/tz1126719
https://q.yingjiesheng.com/forum/bk25786/tz1126720
https://q.yingjiesheng.com/forum/bk25786/tz1126721
https://q.yingjiesheng.com/forum/bk25786/tz1126722
https://q.yingjiesheng.com/forum/bk25786/tz1126723
https://q.yingjiesheng.com/forum/bk25786/tz1126724
https://q.yingjiesheng.com/forum/bk25786/tz1126725
https://q.yingjiesheng.com/forum/bk25786/tz1126726
https://q.yingjiesheng.com/forum/bk25786/tz1126727
https://q.yingjiesheng.com/forum/bk25786/tz1126728
https://q.yingjiesheng.com/forum/bk25786/tz1126729
https://q.yingjiesheng.com/forum/bk25786/tz1126730
https://q.yingjiesheng.com/forum/bk25786/tz1126731
https://q.yingjiesheng.com/forum/bk25786/tz1126732
https://q.yingjiesheng.com/forum/bk25786/tz1126733
https://q.yingjiesheng.com/forum/bk25786/tz1126734
https://q.yingjiesheng.com/forum/bk25786/tz1126735
https://q.yingjiesheng.com/forum/bk25786/tz1126736
https://q.yingjiesheng.com/forum/bk25786/tz1126737
https://q.yingjiesheng.com/forum/bk25786/tz1126738
https://q.yingjiesheng.com/forum/bk25786/tz1126739
https://q.yingjiesheng.com/forum/bk25786/tz1126740
https://q.yingjiesheng.com/forum/bk25786/tz1126741
https://q.yingjiesheng.com/forum/bk25786/tz1126742
https://q.yingjiesheng.com/forum/bk25786/tz1126743
https://q.yingjiesheng.com/forum/bk25786/tz1126744
https://q.yingjiesheng.com/forum/bk25786/tz1126745
https://q.yingjiesheng.com/forum/bk25786/tz1126746
https://q.yingjiesheng.com/forum/bk25786/tz1126747
https://q.yingjiesheng.com/forum/bk25786/tz1126748
https://q.yingjiesheng.com/forum/bk25786/tz1126749
https://q.yingjiesheng.com/forum/bk25786/tz1126750
https://q.yingjiesheng.com/forum/bk25786/tz1126751
https://q.yingjiesheng.com/forum/bk25786/tz1126752
https://q.yingjiesheng.com/forum/bk25786/tz1126753
https://q.yingjiesheng.com/forum/bk25786/tz1126754
https://q.yingjiesheng.com/forum/bk25786/tz1126755
https://q.yingjiesheng.com/forum/bk25786/tz1126756
https://q.yingjiesheng.com/forum/bk25786/tz1126757
https://q.yingjiesheng.com/forum/bk25786/tz1126758
https://q.yingjiesheng.com/forum/bk25786/tz1126759
https://q.yingjiesheng.com/forum/bk25786/tz1126760
https://q.yingjiesheng.com/forum/bk25786/tz1126761
https://q.yingjiesheng.com/forum/bk25786/tz1126762
https://q.yingjiesheng.com/forum/bk25786/tz1126763
https://q.yingjiesheng.com/forum/bk25786/tz1126764
https://q.yingjiesheng.com/forum/bk25786/tz1126765
https://q.yingjiesheng.com/forum/bk25786/tz1126766
https://q.yingjiesheng.com/forum/bk25786/tz1126767
https://q.yingjiesheng.com/forum/bk25786/tz1126768
https://q.yingjiesheng.com/forum/bk25786/tz1126769
https://q.yingjiesheng.com/forum/bk25786/tz1126770
https://q.yingjiesheng.com/forum/bk25786/tz1126771
https://q.yingjiesheng.com/forum/bk25786/tz1126772
https://q.yingjiesheng.com/forum/bk25786/tz1126773
https://q.yingjiesheng.com/forum/bk25786/tz1126774
https://q.yingjiesheng.com/forum/bk25786/tz1126775
https://q.yingjiesheng.com/forum/bk25786/tz1126776
https://q.yingjiesheng.com/forum/bk25786/tz1126777
https://q.yingjiesheng.com/forum/bk25786/tz1126778
https://q.yingjiesheng.com/forum/bk25786/tz1126779
https://q.yingjiesheng.com/forum/bk25786/tz1126780
https://q.yingjiesheng.com/forum/bk25786/tz1126781
https://q.yingjiesheng.com/forum/bk25786/tz1126782
https://q.yingjiesheng.com/forum/bk25786/tz1126783
https://q.yingjiesheng.com/forum/bk25786/tz1126784
https://q.yingjiesheng.com/forum/bk25786/tz1126785
https://q.yingjiesheng.com/forum/bk25786/tz1126786
https://q.yingjiesheng.com/forum/bk25786/tz1126787
https://q.yingjiesheng.com/forum/bk25786/tz1126788
https://q.yingjiesheng.com/forum/bk25786/tz1126789
https://q.yingjiesheng.com/forum/bk25786/tz1126790
https://q.yingjiesheng.com/forum/bk25786/tz1126791
https://q.yingjiesheng.com/forum/bk25786/tz1126792
https://q.yingjiesheng.com/forum/bk25786/tz1126793
https://q.yingjiesheng.com/forum/bk25786/tz1126794
https://q.yingjiesheng.com/forum/bk25786/tz1126795
https://q.yingjiesheng.com/forum/bk25786/tz1126796
https://q.yingjiesheng.com/forum/bk25786/tz1126797
https://q.yingjiesheng.com/forum/bk25786/tz1126798
https://q.yingjiesheng.com/forum/bk25786/tz1126799
https://q.yingjiesheng.com/forum/bk25786/tz1126800
https://q.yingjiesheng.com/forum/bk25786/tz1126801
https://q.yingjiesheng.com/forum/bk25786/tz1126802
https://q.yingjiesheng.com/forum/bk25786/tz1126803
https://q.yingjiesheng.com/forum/bk25786/tz1126804
https://q.yingjiesheng.com/forum/bk25786/tz1126805
https://q.yingjiesheng.com/forum/bk25786/tz1126806
https://q.yingjiesheng.com/forum/bk25786/tz1126807
https://q.yingjiesheng.com/forum/bk25786/tz1126808
https://q.yingjiesheng.com/forum/bk25786/tz1126809
https://q.yingjiesheng.com/forum/bk25786/tz1126810
https://q.yingjiesheng.com/forum/bk25786/tz1126811
https://q.yingjiesheng.com/forum/bk25786/tz1126812
https://q.yingjiesheng.com/forum/bk25786/tz1126813
https://q.yingjiesheng.com/forum/bk25786/tz1126814
https://q.yingjiesheng.com/forum/bk25786/tz1126815
https://q.yingjiesheng.com/forum/bk25786/tz1126816
https://q.yingjiesheng.com/forum/bk25786/tz1126817
https://q.yingjiesheng.com/forum/bk25786/tz1126818
https://q.yingjiesheng.com/forum/bk25786/tz1126819
https://q.yingjiesheng.com/forum/bk25786/tz1126820
https://q.yingjiesheng.com/forum/bk25786/tz1126821
https://q.yingjiesheng.com/forum/bk25786/tz1126822
https://q.yingjiesheng.com/forum/bk25786/tz1126823
https://q.yingjiesheng.com/forum/bk25786/tz1126824
https://q.yingjiesheng.com/forum/bk25786/tz1126825
https://q.yingjiesheng.com/forum/bk25786/tz1126826
https://q.yingjiesheng.com/forum/bk25786/tz1126827
https://q.yingjiesheng.com/forum/bk25786/tz1126828
https://q.yingjiesheng.com/forum/bk25786/tz1126829
https://q.yingjiesheng.com/forum/bk25786/tz1126830
https://q.yingjiesheng.com/forum/bk25786/tz1126831
https://q.yingjiesheng.com/forum/bk25786/tz1126832
https://q.yingjiesheng.com/forum/bk25786/tz1126833
https://q.yingjiesheng.com/forum/bk25786/tz1126834
https://q.yingjiesheng.com/forum/bk25786/tz1126835
https://q.yingjiesheng.com/forum/bk25786/tz1126836
https://q.yingjiesheng.com/forum/bk25786/tz1126837
https://q.yingjiesheng.com/forum/bk25786/tz1126838
https://q.yingjiesheng.com/forum/bk25786/tz1126839
https://q.yingjiesheng.com/forum/bk25786/tz1126840
https://q.yingjiesheng.com/forum/bk25786/tz1126841
https://q.yingjiesheng.com/forum/bk25786/tz1126842
https://q.yingjiesheng.com/forum/bk25786/tz1126843
https://q.yingjiesheng.com/forum/bk25786/tz1126844
https://q.yingjiesheng.com/forum/bk25786/tz1126845
https://q.yingjiesheng.com/forum/bk25786/tz1126846
https://q.yingjiesheng.com/forum/bk25786/tz1126847
https://q.yingjiesheng.com/forum/bk25786/tz1126848
https://q.yingjiesheng.com/forum/bk25786/tz1126849
https://q.yingjiesheng.com/forum/bk25786/tz1126850
https://q.yingjiesheng.com/forum/bk25786/tz1126851
https://q.yingjiesheng.com/forum/bk25786/tz1126852
https://q.yingjiesheng.com/forum/bk25786/tz1126853
https://q.yingjiesheng.com/forum/bk25786/tz1126854
https://q.yingjiesheng.com/forum/bk25786/tz1126855
https://q.yingjiesheng.com/forum/bk25786/tz1126856
https://q.yingjiesheng.com/forum/bk25786/tz1126857
https://q.yingjiesheng.com/forum/bk25786/tz1126858
https://q.yingjiesheng.com/forum/bk25786/tz1126859
https://q.yingjiesheng.com/forum/bk25786/tz1126860
https://q.yingjiesheng.com/forum/bk25786/tz1126861
https://q.yingjiesheng.com/forum/bk25786/tz1126862
https://q.yingjiesheng.com/forum/bk25786/tz1126863
https://q.yingjiesheng.com/forum/bk25786/tz1126864
https://q.yingjiesheng.com/forum/bk25786/tz1126865
https://q.yingjiesheng.com/forum/bk25786/tz1126866
https://q.yingjiesheng.com/forum/bk25786/tz1126867
https://q.yingjiesheng.com/forum/bk25786/tz1126868
https://q.yingjiesheng.com/forum/bk25786/tz1126869
https://q.yingjiesheng.com/forum/bk25786/tz1126870
https://q.yingjiesheng.com/forum/bk25786/tz1126871
https://q.yingjiesheng.com/forum/bk25786/tz1126872
https://q.yingjiesheng.com/forum/bk25786/tz1126873
https://q.yingjiesheng.com/forum/bk25786/tz1126874
https://q.yingjiesheng.com/forum/bk25786/tz1126875
https://q.yingjiesheng.com/forum/bk25786/tz1126876
https://q.yingjiesheng.com/forum/bk25786/tz1126877
https://q.yingjiesheng.com/forum/bk25786/tz1126878
https://q.yingjiesheng.com/forum/bk25786/tz1126879
https://q.yingjiesheng.com/forum/bk25786/tz1126880
https://q.yingjiesheng.com/forum/bk25786/tz1126881
https://q.yingjiesheng.com/forum/bk25786/tz1126882
https://q.yingjiesheng.com/forum/bk25786/tz1126883
https://q.yingjiesheng.com/forum/bk25786/tz1126884
https://q.yingjiesheng.com/forum/bk25786/tz1126885
https://q.yingjiesheng.com/forum/bk25786/tz1126886
https://q.yingjiesheng.com/forum/bk25786/tz1126887
https://q.yingjiesheng.com/forum/bk25786/tz1126888
https://q.yingjiesheng.com/forum/bk25786/tz1126889
https://q.yingjiesheng.com/forum/bk25786/tz1126890
https://q.yingjiesheng.com/forum/bk25786/tz1126891
https://q.yingjiesheng.com/forum/bk25786/tz1126892
https://q.yingjiesheng.com/forum/bk25786/tz1126893
https://q.yingjiesheng.com/forum/bk25786/tz1126894
https://q.yingjiesheng.com/forum/bk25786/tz1126895
https://q.yingjiesheng.com/forum/bk25786/tz1126896
https://q.yingjiesheng.com/forum/bk25786/tz1126897
https://q.yingjiesheng.com/forum/bk25786/tz1126898
https://q.yingjiesheng.com/forum/bk25786/tz1126899
https://q.yingjiesheng.com/forum/bk25786/tz1126900
https://q.yingjiesheng.com/forum/bk25786/tz1126901
https://q.yingjiesheng.com/forum/bk25786/tz1126902
https://q.yingjiesheng.com/forum/bk25786/tz1126903
https://q.yingjiesheng.com/forum/bk25786/tz1126904
https://q.yingjiesheng.com/forum/bk25786/tz1126905
https://q.yingjiesheng.com/forum/bk25786/tz1126906
https://q.yingjiesheng.com/forum/bk25786/tz1126907
https://q.yingjiesheng.com/forum/bk25786/tz1126908
https://q.yingjiesheng.com/forum/bk25786/tz1126909
https://q.yingjiesheng.com/forum/bk25786/tz1126910
https://q.yingjiesheng.com/forum/bk25786/tz1126911
https://q.yingjiesheng.com/forum/bk25786/tz1126912
https://q.yingjiesheng.com/forum/bk25786/tz1126913
https://q.yingjiesheng.com/forum/bk25786/tz1126914
https://q.yingjiesheng.com/forum/bk25786/tz1126915
https://q.yingjiesheng.com/forum/bk25786/tz1126916
https://q.yingjiesheng.com/forum/bk25786/tz1126917
https://q.yingjiesheng.com/forum/bk25786/tz1126918
https://q.yingjiesheng.com/forum/bk25786/tz1126919
https://q.yingjiesheng.com/forum/bk25786/tz1126920
https://q.yingjiesheng.com/forum/bk25786/tz1126921
https://q.yingjiesheng.com/forum/bk25786/tz1126922
https://q.yingjiesheng.com/forum/bk25786/tz1126923
https://q.yingjiesheng.com/forum/bk25786/tz1126924
https://q.yingjiesheng.com/forum/bk25786/tz1126925
https://q.yingjiesheng.com/forum/bk25786/tz1126926
https://q.yingjiesheng.com/forum/bk25786/tz1126927
https://q.yingjiesheng.com/forum/bk25786/tz1126928
https://q.yingjiesheng.com/forum/bk25786/tz1126929
https://q.yingjiesheng.com/forum/bk25786/tz1126930
https://q.yingjiesheng.com/forum/bk25786/tz1126931
https://q.yingjiesheng.com/forum/bk25786/tz1126932
https://q.yingjiesheng.com/forum/bk25786/tz1126933
https://q.yingjiesheng.com/forum/bk25786/tz1126934
https://q.yingjiesheng.com/forum/bk25786/tz1126935
https://q.yingjiesheng.com/forum/bk25786/tz1126936
https://q.yingjiesheng.com/forum/bk25786/tz1126937
https://q.yingjiesheng.com/forum/bk25786/tz1126938
https://q.yingjiesheng.com/forum/bk25786/tz1126939
https://q.yingjiesheng.com/forum/bk25786/tz1126940
https://q.yingjiesheng.com/forum/bk25786/tz1126941
https://q.yingjiesheng.com/forum/bk25786/tz1126942
https://q.yingjiesheng.com/forum/bk25786/tz1126943
https://q.yingjiesheng.com/forum/bk25786/tz1126944
https://q.yingjiesheng.com/forum/bk25786/tz1126945
https://q.yingjiesheng.com/forum/bk25786/tz1126946
https://q.yingjiesheng.com/forum/bk25786/tz1126947
https://q.yingjiesheng.com/forum/bk25786/tz1126948
https://q.yingjiesheng.com/forum/bk25786/tz1126949
https://q.yingjiesheng.com/forum/bk25786/tz1126950
https://q.yingjiesheng.com/forum/bk25786/tz1126951
https://q.yingjiesheng.com/forum/bk25786/tz1126952
https://q.yingjiesheng.com/forum/bk25786/tz1126953
https://q.yingjiesheng.com/forum/bk25786/tz1126954
https://q.yingjiesheng.com/forum/bk25786/tz1126955
https://q.yingjiesheng.com/forum/bk25786/tz1126956
https://q.yingjiesheng.com/forum/bk25786/tz1126957
https://q.yingjiesheng.com/forum/bk25786/tz1126958
https://q.yingjiesheng.com/forum/bk25786/tz1126959

基于vue3.5+tauri2.0接入deepseek-v3实战桌面端ai系统
deepseek-tauri2-chat:基于vue3.5+deepseek+tauri2+openai
从0-1搭建跨平台客户端流式输出AI对话系统。集成 Tauri2 对接 DeepSeek-V3 聊天大模型。采用无边框圆角阴影窗口、浅色+暗黑主题、代码高亮、会话本地存储等功能。
基于uniapp对接deepseek-v3跨端ai模板【h5+小程序+app端】
原创vue3.5+deepseek+arco-design网页web版流式输出对话模板
vue3+vite6+vant4实战mobile版流式ai聊天会话
使用技术
- 编码工具:vscode
- 前端框架:vite^6.3.5+vue^3.5.15+vue-router^4.5.1
- 大模型框架:DeepSeek-V3-0324 + OpenAI
- 跨平台框架:tauri^2.5.0
- 组件库:arco-design^2.57.0 (字节桌面端组件库)
- 状态管理:pinia^3.0.3
- 本地缓存:pinia-plugin-persistedstate^4.3.0
- markdown插件:markdown-it
项目结构目录
tauri2-vue3-winseek电脑端ai对话系统已经同步到我的原创作品集。
热文推荐
vue3-webseek网页版AI问答|Vite6+DeepSeek+Arco流式ai聊天打字效果
uniapp+vue3+deepseek+uv-ui跨端实战仿deepseek/豆包流式ai聊天对话助手。
Electron35-DeepSeek桌面端AI系统|vue3.5+electron+arco客户端ai模板
Electron32-Vue3OS桌面版os系统|vue3+electron+arco客户端OS管理模板
uniapp+vue3聊天室|uni-app+vite4+uv-ui跨端仿微信app聊天语音/朋友圈
Tauri2.0+Vite5聊天室|vue3+tauri2+element-plus仿微信|tauri聊天应用
tauri2.0-admin桌面端后台系统|Tauri2+Vite5+ElementPlus管理后台EXE程序
作者:xiaoyan2017
链接: https://www.cnblogs.com/xiaoyan2017/p/18932240
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
deepseek-tauri2-chat:基于vue3.5+deepseek+tauri2+openai
从0-1搭建跨平台客户端流式输出AI对话系统。集成 Tauri2 对接 DeepSeek-V3 聊天大模型。采用无边框圆角阴影窗口、浅色+暗黑主题、代码高亮、会话本地存储等功能。
基于uniapp对接deepseek-v3跨端ai模板【h5+小程序+app端】
原创vue3.5+deepseek+arco-design网页web版流式输出对话模板
vue3+vite6+vant4实战mobile版流式ai聊天会话
使用技术
- 编码工具:vscode
- 前端框架:vite^6.3.5+vue^3.5.15+vue-router^4.5.1
- 大模型框架:DeepSeek-V3-0324 + OpenAI
- 跨平台框架:tauri^2.5.0
- 组件库:arco-design^2.57.0 (字节桌面端组件库)
- 状态管理:pinia^3.0.3
- 本地缓存:pinia-plugin-persistedstate^4.3.0
- markdown插件:markdown-it
项目结构目录
tauri2-vue3-winseek电脑端ai对话系统已经同步到我的原创作品集。
热文推荐
vue3-webseek网页版AI问答|Vite6+DeepSeek+Arco流式ai聊天打字效果
uniapp+vue3+deepseek+uv-ui跨端实战仿deepseek/豆包流式ai聊天对话助手。
Electron35-DeepSeek桌面端AI系统|vue3.5+electron+arco客户端ai模板
Electron32-Vue3OS桌面版os系统|vue3+electron+arco客户端OS管理模板
uniapp+vue3聊天室|uni-app+vite4+uv-ui跨端仿微信app聊天语音/朋友圈
Tauri2.0+Vite5聊天室|vue3+tauri2+element-plus仿微信|tauri聊天应用
tauri2.0-admin桌面端后台系统|Tauri2+Vite5+ElementPlus管理后台EXE程序
作者:xiaoyan2017
链接: https://www.cnblogs.com/xiaoyan2017/p/18932240
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

别用HBuilder X
最垃圾的软件没有之一,国产垃圾乐色软件运行不了你妈啊傻逼软件最恶心人了开发这个软件的程序员就是家里死完了
最垃圾的软件没有之一,国产垃圾乐色软件运行不了你妈啊傻逼软件最恶心人了开发这个软件的程序员就是家里死完了

uniappX 需求强已经出现 微信登录、分享、打开微信小程序需求,大家可以投票,顶起来,官方的插件才是靠谱的选择
uniappX 需求强已经出现 微信登录、分享、打开微信小程序需求,大家可以投票,顶起来,官方的插件才是靠谱的选择
地址: https://vote.dcloud.net.cn/#/?name=uni-app%20x
我只认可官方插件,顶起来
uniappX 需求强已经出现 微信登录、分享、打开微信小程序需求,大家可以投票,顶起来,官方的插件才是靠谱的选择
地址: https://vote.dcloud.net.cn/#/?name=uni-app%20x
我只认可官方插件,顶起来

iOS App 基座执行 plus.video.createLivePusher 闪退问题排查指南
iOS App 基座执行 plus.video.createLivePusher 闪退问题排查指南
一、常见原因分析
权限配置问题
相机/麦克风权限未声明
Info.plist 缺少必要权限描述(iOS 10+ 强制要求)
用户首次使用时拒绝了权限请求
**SDK 集成问题
原生直播推流 SDK 未正确集成
第三方库版本冲突
未正确配置依赖库(如 FFmpeg)
API 调用问题
参数格式错误
在非主线程调用 UI 相关 API
未正确处理异步回调
二、详细排查步骤
- 检查基础配置
xml
<!-- Info.plist 必须包含 -->
<key>NSCameraUsageDescription</key>
<string>需要摄像头权限进行直播</string>
<key>NSMicrophoneUsageDescription</key>
<string>需要麦克风权限进行直播</string> - 验证权限状态(Swift示例)
swift
AVCaptureDevice.requestAccess(for: .video) { granted in
if !granted {
print("摄像头权限被拒绝")
}
} - 检查控制台日志
连接Xcode查看崩溃堆栈
过滤关键字:"LivePusher"、"EXC_BAD_ACCESS"、"signal SIGABRT"
- 最小化测试代码
javascript
// 测试基础调用
const pusher = plus.video.createLivePusher({
url: 'rtmp://test.url',
top: '0px',
left: '0px',
width: '100%',
height: '100%'
})
三、高级调试方案
符号化崩溃日志
使用 atos 命令解析堆栈地址
示例:atos -arch arm64 -o YourApp.app/YourApp 0x00000001000a1234
设备日志分析
bash
idevicesyslog | grep YourAppBundleID
内存诊断
开启Zombie Objects检测
使用Instruments检查内存泄漏
四、特定场景解决方案
案例1:后台切回时闪退
javascript
// 添加生命周期监听
document.addEventListener('pause', () => {
pusher.close()
})
document.addEventListener('resume', () => {
pusher.resume()
})
案例2:特定机型崩溃
检查GPU兼容性
测试关闭硬件加速:
javascript
plus.video.createLivePusher({
hardwareAcceleration: false
// 其他参数...
})
五、终极排查清单
确认所有必要权限已声明
验证SDK版本兼容性
检查参数格式符合文档要求
确保在主线程调用UI相关API
测试基础配置是否能正常运行
收集完整的崩溃日志和堆栈信息
建议按照以上步骤逐步排查,如果问题仍未解决,可提供以下信息进一步分析:
完整的崩溃日志
使用的SDK版本号
复现设备型号和iOS版本
最小化复现代码片段
https://q.yingjiesheng.com/forum/bk25786/tz1126143
https://q.yingjiesheng.com/forum/bk25786/tz1126144
https://q.yingjiesheng.com/forum/bk25786/tz1126145
https://q.yingjiesheng.com/forum/bk25786/tz1126147
https://q.yingjiesheng.com/forum/bk25786/tz1126148
https://q.yingjiesheng.com/forum/bk25786/tz1126149
https://q.yingjiesheng.com/forum/bk25786/tz1126150
https://q.yingjiesheng.com/forum/bk25786/tz1126151
https://q.yingjiesheng.com/forum/bk25786/tz1126152
https://q.yingjiesheng.com/forum/bk25786/tz1126153
https://q.yingjiesheng.com/forum/bk25786/tz1126154
https://q.yingjiesheng.com/forum/bk25786/tz1126155
https://q.yingjiesheng.com/forum/bk25786/tz1126156
https://q.yingjiesheng.com/forum/bk25786/tz1126157
https://q.yingjiesheng.com/forum/bk25786/tz1126158
https://q.yingjiesheng.com/forum/bk25786/tz1126159
https://q.yingjiesheng.com/forum/bk25786/tz1126160
https://q.yingjiesheng.com/forum/bk25786/tz1126161
https://q.yingjiesheng.com/forum/bk25786/tz1126162
https://q.yingjiesheng.com/forum/bk25786/tz1126163
https://q.yingjiesheng.com/forum/bk25786/tz1126164
https://q.yingjiesheng.com/forum/bk25786/tz1126165
https://q.yingjiesheng.com/forum/bk25786/tz1126166
https://q.yingjiesheng.com/forum/bk25786/tz1126167
https://q.yingjiesheng.com/forum/bk25786/tz1126168
https://q.yingjiesheng.com/forum/bk25786/tz1126169
https://q.yingjiesheng.com/forum/bk25786/tz1126170
https://q.yingjiesheng.com/forum/bk25786/tz1126171
https://q.yingjiesheng.com/forum/bk25786/tz1126172
https://q.yingjiesheng.com/forum/bk25786/tz1126173
https://q.yingjiesheng.com/forum/bk25786/tz1126174
https://q.yingjiesheng.com/forum/bk25786/tz1126175
https://q.yingjiesheng.com/forum/bk25786/tz1126176
https://q.yingjiesheng.com/forum/bk25786/tz1126177
https://q.yingjiesheng.com/forum/bk25786/tz1126178
https://q.yingjiesheng.com/forum/bk25786/tz1126179
https://q.yingjiesheng.com/forum/bk25786/tz1126180
https://q.yingjiesheng.com/forum/bk25786/tz1126181
https://q.yingjiesheng.com/forum/bk25786/tz1126183
https://q.yingjiesheng.com/forum/bk25786/tz1126184
https://q.yingjiesheng.com/forum/bk25786/tz1126185
https://q.yingjiesheng.com/forum/bk25786/tz1126186
https://q.yingjiesheng.com/forum/bk25786/tz1126187
https://q.yingjiesheng.com/forum/bk25786/tz1126188
https://q.yingjiesheng.com/forum/bk25786/tz1126189
https://q.yingjiesheng.com/forum/bk25786/tz1126190
https://q.yingjiesheng.com/forum/bk25786/tz1126191
https://q.yingjiesheng.com/forum/bk25786/tz1126192
https://q.yingjiesheng.com/forum/bk25786/tz1126193
https://q.yingjiesheng.com/forum/bk25786/tz1126194
https://q.yingjiesheng.com/forum/bk25786/tz1126195
https://q.yingjiesheng.com/forum/bk25786/tz1126196
https://q.yingjiesheng.com/forum/bk25786/tz1126197
https://q.yingjiesheng.com/forum/bk25786/tz1126198
https://q.yingjiesheng.com/forum/bk25786/tz1126199
https://q.yingjiesheng.com/forum/bk25786/tz1126200
https://q.yingjiesheng.com/forum/bk25786/tz1126201
https://q.yingjiesheng.com/forum/bk25786/tz1126202
https://q.yingjiesheng.com/forum/bk25786/tz1126203
https://q.yingjiesheng.com/forum/bk25786/tz1126204
https://q.yingjiesheng.com/forum/bk25786/tz1126205
https://q.yingjiesheng.com/forum/bk25786/tz1126206
https://q.yingjiesheng.com/forum/bk25786/tz1126207
https://q.yingjiesheng.com/forum/bk25786/tz1126208
https://q.yingjiesheng.com/forum/bk25786/tz1126209
https://q.yingjiesheng.com/forum/bk25786/tz1126210
https://q.yingjiesheng.com/forum/bk25786/tz1126211
https://q.yingjiesheng.com/forum/bk25786/tz1126212
https://q.yingjiesheng.com/forum/bk25786/tz1126213
https://q.yingjiesheng.com/forum/bk25786/tz1126214
https://q.yingjiesheng.com/forum/bk25786/tz1126215
https://q.yingjiesheng.com/forum/bk25786/tz1126216
https://q.yingjiesheng.com/forum/bk25786/tz1126217
https://q.yingjiesheng.com/forum/bk25786/tz1126218
https://q.yingjiesheng.com/forum/bk25786/tz1126219
https://q.yingjiesheng.com/forum/bk25786/tz1126220
https://q.yingjiesheng.com/forum/bk25786/tz1126221
https://q.yingjiesheng.com/forum/bk25786/tz1126222
https://q.yingjiesheng.com/forum/bk25786/tz1126223
https://q.yingjiesheng.com/forum/bk25786/tz1126224
https://q.yingjiesheng.com/forum/bk25786/tz1126225
https://q.yingjiesheng.com/forum/bk25786/tz1126226
https://q.yingjiesheng.com/forum/bk25786/tz1126227
https://q.yingjiesheng.com/forum/bk25786/tz1126228
https://q.yingjiesheng.com/forum/bk25786/tz1126229
https://q.yingjiesheng.com/forum/bk25786/tz1126230
https://q.yingjiesheng.com/forum/bk25786/tz1126231
https://q.yingjiesheng.com/forum/bk25786/tz1126232
https://q.yingjiesheng.com/forum/bk25786/tz1126233
https://q.yingjiesheng.com/forum/bk25786/tz1126234
https://q.yingjiesheng.com/forum/bk25786/tz1126235
https://q.yingjiesheng.com/forum/bk25786/tz1126236
https://q.yingjiesheng.com/forum/bk25786/tz1126237
iOS App 基座执行 plus.video.createLivePusher 闪退问题排查指南
一、常见原因分析
权限配置问题
相机/麦克风权限未声明
Info.plist 缺少必要权限描述(iOS 10+ 强制要求)
用户首次使用时拒绝了权限请求
**SDK 集成问题
原生直播推流 SDK 未正确集成
第三方库版本冲突
未正确配置依赖库(如 FFmpeg)
API 调用问题
参数格式错误
在非主线程调用 UI 相关 API
未正确处理异步回调
二、详细排查步骤
- 检查基础配置
xml
<!-- Info.plist 必须包含 -->
<key>NSCameraUsageDescription</key>
<string>需要摄像头权限进行直播</string>
<key>NSMicrophoneUsageDescription</key>
<string>需要麦克风权限进行直播</string> - 验证权限状态(Swift示例)
swift
AVCaptureDevice.requestAccess(for: .video) { granted in
if !granted {
print("摄像头权限被拒绝")
}
} - 检查控制台日志
连接Xcode查看崩溃堆栈
过滤关键字:"LivePusher"、"EXC_BAD_ACCESS"、"signal SIGABRT"
- 最小化测试代码
javascript
// 测试基础调用
const pusher = plus.video.createLivePusher({
url: 'rtmp://test.url',
top: '0px',
left: '0px',
width: '100%',
height: '100%'
})
三、高级调试方案
符号化崩溃日志
使用 atos 命令解析堆栈地址
示例:atos -arch arm64 -o YourApp.app/YourApp 0x00000001000a1234
设备日志分析
bash
idevicesyslog | grep YourAppBundleID
内存诊断
开启Zombie Objects检测
使用Instruments检查内存泄漏
四、特定场景解决方案
案例1:后台切回时闪退
javascript
// 添加生命周期监听
document.addEventListener('pause', () => {
pusher.close()
})
document.addEventListener('resume', () => {
pusher.resume()
})
案例2:特定机型崩溃
检查GPU兼容性
测试关闭硬件加速:
javascript
plus.video.createLivePusher({
hardwareAcceleration: false
// 其他参数...
})
五、终极排查清单
确认所有必要权限已声明
验证SDK版本兼容性
检查参数格式符合文档要求
确保在主线程调用UI相关API
测试基础配置是否能正常运行
收集完整的崩溃日志和堆栈信息
建议按照以上步骤逐步排查,如果问题仍未解决,可提供以下信息进一步分析:
完整的崩溃日志
使用的SDK版本号
复现设备型号和iOS版本
最小化复现代码片段
https://q.yingjiesheng.com/forum/bk25786/tz1126143
https://q.yingjiesheng.com/forum/bk25786/tz1126144
https://q.yingjiesheng.com/forum/bk25786/tz1126145
https://q.yingjiesheng.com/forum/bk25786/tz1126147
https://q.yingjiesheng.com/forum/bk25786/tz1126148
https://q.yingjiesheng.com/forum/bk25786/tz1126149
https://q.yingjiesheng.com/forum/bk25786/tz1126150
https://q.yingjiesheng.com/forum/bk25786/tz1126151
https://q.yingjiesheng.com/forum/bk25786/tz1126152
https://q.yingjiesheng.com/forum/bk25786/tz1126153
https://q.yingjiesheng.com/forum/bk25786/tz1126154
https://q.yingjiesheng.com/forum/bk25786/tz1126155
https://q.yingjiesheng.com/forum/bk25786/tz1126156
https://q.yingjiesheng.com/forum/bk25786/tz1126157
https://q.yingjiesheng.com/forum/bk25786/tz1126158
https://q.yingjiesheng.com/forum/bk25786/tz1126159
https://q.yingjiesheng.com/forum/bk25786/tz1126160
https://q.yingjiesheng.com/forum/bk25786/tz1126161
https://q.yingjiesheng.com/forum/bk25786/tz1126162
https://q.yingjiesheng.com/forum/bk25786/tz1126163
https://q.yingjiesheng.com/forum/bk25786/tz1126164
https://q.yingjiesheng.com/forum/bk25786/tz1126165
https://q.yingjiesheng.com/forum/bk25786/tz1126166
https://q.yingjiesheng.com/forum/bk25786/tz1126167
https://q.yingjiesheng.com/forum/bk25786/tz1126168
https://q.yingjiesheng.com/forum/bk25786/tz1126169
https://q.yingjiesheng.com/forum/bk25786/tz1126170
https://q.yingjiesheng.com/forum/bk25786/tz1126171
https://q.yingjiesheng.com/forum/bk25786/tz1126172
https://q.yingjiesheng.com/forum/bk25786/tz1126173
https://q.yingjiesheng.com/forum/bk25786/tz1126174
https://q.yingjiesheng.com/forum/bk25786/tz1126175
https://q.yingjiesheng.com/forum/bk25786/tz1126176
https://q.yingjiesheng.com/forum/bk25786/tz1126177
https://q.yingjiesheng.com/forum/bk25786/tz1126178
https://q.yingjiesheng.com/forum/bk25786/tz1126179
https://q.yingjiesheng.com/forum/bk25786/tz1126180
https://q.yingjiesheng.com/forum/bk25786/tz1126181
https://q.yingjiesheng.com/forum/bk25786/tz1126183
https://q.yingjiesheng.com/forum/bk25786/tz1126184
https://q.yingjiesheng.com/forum/bk25786/tz1126185
https://q.yingjiesheng.com/forum/bk25786/tz1126186
https://q.yingjiesheng.com/forum/bk25786/tz1126187
https://q.yingjiesheng.com/forum/bk25786/tz1126188
https://q.yingjiesheng.com/forum/bk25786/tz1126189
https://q.yingjiesheng.com/forum/bk25786/tz1126190
https://q.yingjiesheng.com/forum/bk25786/tz1126191
https://q.yingjiesheng.com/forum/bk25786/tz1126192
https://q.yingjiesheng.com/forum/bk25786/tz1126193
https://q.yingjiesheng.com/forum/bk25786/tz1126194
https://q.yingjiesheng.com/forum/bk25786/tz1126195
https://q.yingjiesheng.com/forum/bk25786/tz1126196
https://q.yingjiesheng.com/forum/bk25786/tz1126197
https://q.yingjiesheng.com/forum/bk25786/tz1126198
https://q.yingjiesheng.com/forum/bk25786/tz1126199
https://q.yingjiesheng.com/forum/bk25786/tz1126200
https://q.yingjiesheng.com/forum/bk25786/tz1126201
https://q.yingjiesheng.com/forum/bk25786/tz1126202
https://q.yingjiesheng.com/forum/bk25786/tz1126203
https://q.yingjiesheng.com/forum/bk25786/tz1126204
https://q.yingjiesheng.com/forum/bk25786/tz1126205
https://q.yingjiesheng.com/forum/bk25786/tz1126206
https://q.yingjiesheng.com/forum/bk25786/tz1126207
https://q.yingjiesheng.com/forum/bk25786/tz1126208
https://q.yingjiesheng.com/forum/bk25786/tz1126209
https://q.yingjiesheng.com/forum/bk25786/tz1126210
https://q.yingjiesheng.com/forum/bk25786/tz1126211
https://q.yingjiesheng.com/forum/bk25786/tz1126212
https://q.yingjiesheng.com/forum/bk25786/tz1126213
https://q.yingjiesheng.com/forum/bk25786/tz1126214
https://q.yingjiesheng.com/forum/bk25786/tz1126215
https://q.yingjiesheng.com/forum/bk25786/tz1126216
https://q.yingjiesheng.com/forum/bk25786/tz1126217
https://q.yingjiesheng.com/forum/bk25786/tz1126218
https://q.yingjiesheng.com/forum/bk25786/tz1126219
https://q.yingjiesheng.com/forum/bk25786/tz1126220
https://q.yingjiesheng.com/forum/bk25786/tz1126221
https://q.yingjiesheng.com/forum/bk25786/tz1126222
https://q.yingjiesheng.com/forum/bk25786/tz1126223
https://q.yingjiesheng.com/forum/bk25786/tz1126224
https://q.yingjiesheng.com/forum/bk25786/tz1126225
https://q.yingjiesheng.com/forum/bk25786/tz1126226
https://q.yingjiesheng.com/forum/bk25786/tz1126227
https://q.yingjiesheng.com/forum/bk25786/tz1126228
https://q.yingjiesheng.com/forum/bk25786/tz1126229
https://q.yingjiesheng.com/forum/bk25786/tz1126230
https://q.yingjiesheng.com/forum/bk25786/tz1126231
https://q.yingjiesheng.com/forum/bk25786/tz1126232
https://q.yingjiesheng.com/forum/bk25786/tz1126233
https://q.yingjiesheng.com/forum/bk25786/tz1126234
https://q.yingjiesheng.com/forum/bk25786/tz1126235
https://q.yingjiesheng.com/forum/bk25786/tz1126236
https://q.yingjiesheng.com/forum/bk25786/tz1126237

Uniapp 的鸿蒙 next 应用中隐藏和显示系统状态栏
本示例至少需要在 HbuilderX 4.61 运行
在 uniapp 开发鸿蒙应用中,通过 UTS 插件,可以调用许多系统原生的 API,这里给出一个小功能:隐藏和显示系统状态栏
原始的界面效果:
隐藏系统状态栏之后的效果:
这个示例的参考文档有:
- 鸿蒙官方文档: https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs/faqs-arkui-193
- UTS 插件: https://doc.dcloud.net.cn/uni-app-x/plugin/uts-plugin.html
- UTSHarmony 的使用: https://doc.dcloud.net.cn/uni-app-x/uts/utsharmony.html
核心页面代码:
<template>
<view>
<button @click="show">显示原生状态栏</button>
<button @click="hide">隐藏原生状态栏</button>
</view>
</template>
<script>
import { showStatusBar, hideStatusBar } from '@/uni_modules/harmony-statusbar';
export default {
data() {
return {
message: 'Hello, World!'
}
},
methods: {
show() {
showStatusBar()
},
hide() {
hideStatusBar()
}
}
}
</script>
<style scoped>
</style>
核心UTS插件代码:
import window from '@ohos.window';
let _window : window.Window;
UTSHarmony.onAppAbilityWindowStageCreate((windowStage : window.WindowStage) => {
_window = windowStage.getMainWindowSync()
})
export const hideStatusBar = () => {
_window.setWindowSystemBarEnable([])
}
export const showStatusBar = () => {
_window.setWindowSystemBarEnable(['status', 'navigation'])
}
示例工程:
本示例至少需要在 HbuilderX 4.61 运行
在 uniapp 开发鸿蒙应用中,通过 UTS 插件,可以调用许多系统原生的 API,这里给出一个小功能:隐藏和显示系统状态栏
原始的界面效果:
隐藏系统状态栏之后的效果:
这个示例的参考文档有:
- 鸿蒙官方文档: https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs/faqs-arkui-193
- UTS 插件: https://doc.dcloud.net.cn/uni-app-x/plugin/uts-plugin.html
- UTSHarmony 的使用: https://doc.dcloud.net.cn/uni-app-x/uts/utsharmony.html
核心页面代码:
<template>
<view>
<button @click="show">显示原生状态栏</button>
<button @click="hide">隐藏原生状态栏</button>
</view>
</template>
<script>
import { showStatusBar, hideStatusBar } from '@/uni_modules/harmony-statusbar';
export default {
data() {
return {
message: 'Hello, World!'
}
},
methods: {
show() {
showStatusBar()
},
hide() {
hideStatusBar()
}
}
}
</script>
<style scoped>
</style>
核心UTS插件代码:
import window from '@ohos.window';
let _window : window.Window;
UTSHarmony.onAppAbilityWindowStageCreate((windowStage : window.WindowStage) => {
_window = windowStage.getMainWindowSync()
})
export const hideStatusBar = () => {
_window.setWindowSystemBarEnable([])
}
export const showStatusBar = () => {
_window.setWindowSystemBarEnable(['status', 'navigation'])
}
示例工程:
收起阅读 »
如何判断当前行是否保存了代码?
要判断当前行是否保存了代码,可从以下几个维度进行分析,具体方法取决于你所处的场景(如文本编辑器、代码编辑器、文档等),以下是通用判断思路:
一、从内容特征判断
语法结构识别
代码通常包含特定编程语言的语法元素,例如:
编程语言关键词(如 Python 的def、for、if;Java 的public、class、static)。
符号与格式:括号()、花括号{}、方括号[]、分号;、冒号:、运算符+、=、==等。
函数 / 方法调用(如print()、list.append())、变量定义(如int x = 5;)、代码块缩进。
示例:
python
运行
def calculate_sum(a, b):
return a + b
明显包含 Python 函数定义的语法特征,属于代码。
注释与代码标识
代码中常出现注释符号(如//、#、/ /),或被特定标记包裹(如 Markdown 中的代码块符号 ```)。
示例:
这是一行Python注释
// Java代码注释
二、从上下文场景判断
所在平台或工具
若在代码编辑器(如 VS Code、PyCharm)、IDE 或编程相关文档中,当前行更可能是代码。
若在普通文本编辑器、Word 文档或市场分析报告中(如前序对话中的大蒜价格数据),则更可能是纯文本。
前后文关联
查看当前行的上下文:
若前后文有代码块、编程术语(如 “函数”“变量”“循环”),则当前行可能是代码的一部分。
若前后文为自然语言描述(如市场行情、操作步骤),则更可能是普通文本。
三、特殊场景的判断技巧
Markdown 或文档中的代码块
若当前行被 ``或
包裹(如代码块标记),则属于代码。
示例:
java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
纯文本中的代码片段
即使没有标记,若内容符合编程语言语法(如一行 SQL 语句、HTML 标签),也属于代码。
示例:
SELECT * FROM users WHERE age > 18;(SQL 代码)
<div class="container">内容</div>(HTML 代码)
四、总结:判断流程
看内容:是否包含编程语言关键词、符号、语法结构。
看标记:是否被代码块符号包裹,或有注释符号。
看场景:是否在编程相关工具或上下文中。
若满足以上任意一点,当前行更可能是代码;若内容为自然语言、数据列表或非结构化文本,则不是代码。
https://q.yingjiesheng.com/forum/bk25786/tz1125678
https://q.yingjiesheng.com/forum/bk25786/tz1125679
https://q.yingjiesheng.com/forum/bk25786/tz1125680
https://q.yingjiesheng.com/forum/bk25786/tz1125681
https://q.yingjiesheng.com/forum/bk25786/tz1125682
https://q.yingjiesheng.com/forum/bk25786/tz1125683
https://q.yingjiesheng.com/forum/bk25786/tz1125684
https://q.yingjiesheng.com/forum/bk25786/tz1125685
https://q.yingjiesheng.com/forum/bk25786/tz1125686
https://q.yingjiesheng.com/forum/bk25786/tz1125688
https://q.yingjiesheng.com/forum/bk25786/tz1125690
https://q.yingjiesheng.com/forum/bk25786/tz1125691
https://q.yingjiesheng.com/forum/bk25786/tz1125692
https://q.yingjiesheng.com/forum/bk25786/tz1125693
https://q.yingjiesheng.com/forum/bk25786/tz1125694
https://q.yingjiesheng.com/forum/bk25786/tz1125695
https://q.yingjiesheng.com/forum/bk25786/tz1125696
https://q.yingjiesheng.com/forum/bk25786/tz1125697
https://q.yingjiesheng.com/forum/bk25786/tz1125698
https://q.yingjiesheng.com/forum/bk25786/tz1125699
https://q.yingjiesheng.com/forum/bk25786/tz1125700
https://q.yingjiesheng.com/forum/bk25786/tz1125701
https://q.yingjiesheng.com/forum/bk25786/tz1125702
https://q.yingjiesheng.com/forum/bk25786/tz1125703
https://q.yingjiesheng.com/forum/bk25786/tz1125704
https://q.yingjiesheng.com/forum/bk25786/tz1125705
https://q.yingjiesheng.com/forum/bk25786/tz1125706
https://q.yingjiesheng.com/forum/bk25786/tz1125707
https://q.yingjiesheng.com/forum/bk25786/tz1125708
https://q.yingjiesheng.com/forum/bk25786/tz1125709
https://q.yingjiesheng.com/forum/bk25786/tz1125710
https://q.yingjiesheng.com/forum/bk25786/tz1125711
https://q.yingjiesheng.com/forum/bk25786/tz1125712
https://q.yingjiesheng.com/forum/bk25786/tz1125713
https://q.yingjiesheng.com/forum/bk25786/tz1125714
https://q.yingjiesheng.com/forum/bk25786/tz1125715
https://q.yingjiesheng.com/forum/bk25786/tz1125716
https://q.yingjiesheng.com/forum/bk25786/tz1125717
https://q.yingjiesheng.com/forum/bk25786/tz1125718
https://q.yingjiesheng.com/forum/bk25786/tz1125719
https://q.yingjiesheng.com/forum/bk25786/tz1125720
https://q.yingjiesheng.com/forum/bk25786/tz1125721
https://q.yingjiesheng.com/forum/bk25786/tz1125722
https://q.yingjiesheng.com/forum/bk25786/tz1125723
https://q.yingjiesheng.com/forum/bk25786/tz1125724
https://q.yingjiesheng.com/forum/bk25786/tz1125725
https://q.yingjiesheng.com/forum/bk25786/tz1125726
https://q.yingjiesheng.com/forum/bk25786/tz1125727
https://q.yingjiesheng.com/forum/bk25786/tz1125728
https://q.yingjiesheng.com/forum/bk25786/tz1125729
https://q.yingjiesheng.com/forum/bk25786/tz1125730
https://q.yingjiesheng.com/forum/bk25786/tz1125731
https://q.yingjiesheng.com/forum/bk25786/tz1125732
https://q.yingjiesheng.com/forum/bk25786/tz1125733
https://q.yingjiesheng.com/forum/bk25786/tz1125734
https://q.yingjiesheng.com/forum/bk25786/tz1125735
https://q.yingjiesheng.com/forum/bk25786/tz1125736
https://q.yingjiesheng.com/forum/bk25786/tz1125737
https://q.yingjiesheng.com/forum/bk25786/tz1125738
https://q.yingjiesheng.com/forum/bk25786/tz1125739
https://q.yingjiesheng.com/forum/bk25786/tz1125740
https://q.yingjiesheng.com/forum/bk25786/tz1125741
https://q.yingjiesheng.com/forum/bk25786/tz1125742
https://q.yingjiesheng.com/forum/bk25786/tz1125743
https://q.yingjiesheng.com/forum/bk25786/tz1125744
https://q.yingjiesheng.com/forum/bk25786/tz1125745
https://q.yingjiesheng.com/forum/bk25786/tz1125746
https://q.yingjiesheng.com/forum/bk25786/tz1125747
https://q.yingjiesheng.com/forum/bk25786/tz1125748
https://q.yingjiesheng.com/forum/bk25786/tz1125749
https://q.yingjiesheng.com/forum/bk25786/tz1125750
https://q.yingjiesheng.com/forum/bk25786/tz1125751
https://q.yingjiesheng.com/forum/bk25786/tz1125752
https://q.yingjiesheng.com/forum/bk25786/tz1125753
https://q.yingjiesheng.com/forum/bk25786/tz1125754
https://q.yingjiesheng.com/forum/bk25786/tz1125755
https://q.yingjiesheng.com/forum/bk25786/tz1125756
https://q.yingjiesheng.com/forum/bk25786/tz1125757
https://q.yingjiesheng.com/forum/bk25786/tz1125758
https://q.yingjiesheng.com/forum/bk25786/tz1125759
https://q.yingjiesheng.com/forum/bk25786/tz1125760
https://q.yingjiesheng.com/forum/bk25786/tz1125761
https://q.yingjiesheng.com/forum/bk25786/tz1125762
https://q.yingjiesheng.com/forum/bk25786/tz1125763
https://q.yingjiesheng.com/forum/bk25786/tz1125764
https://q.yingjiesheng.com/forum/bk25786/tz1125767
https://q.yingjiesheng.com/forum/bk25786/tz1125768
https://q.yingjiesheng.com/forum/bk25786/tz1125769
https://q.yingjiesheng.com/forum/bk25786/tz1125770
https://q.yingjiesheng.com/forum/bk25786/tz1125771
https://q.yingjiesheng.com/forum/bk25786/tz1125772
https://q.yingjiesheng.com/forum/bk25786/tz1125773
https://q.yingjiesheng.com/forum/bk25786/tz1125774
https://q.yingjiesheng.com/forum/bk25786/tz1125775
https://q.yingjiesheng.com/forum/bk25786/tz1125776
https://q.yingjiesheng.com/forum/bk25786/tz1125777
https://q.yingjiesheng.com/forum/bk25786/tz1125778
https://q.yingjiesheng.com/forum/bk25786/tz1125779
https://q.yingjiesheng.com/forum/bk25786/tz1125780
https://q.yingjiesheng.com/forum/bk25786/tz1125781
https://q.yingjiesheng.com/forum/bk25786/tz1125782
https://q.yingjiesheng.com/forum/bk25786/tz1125783
https://q.yingjiesheng.com/forum/bk25786/tz1125784
https://q.yingjiesheng.com/forum/bk25786/tz1125785
https://q.yingjiesheng.com/forum/bk25786/tz1125786
https://q.yingjiesheng.com/forum/bk25786/tz1125787
https://q.yingjiesheng.com/forum/bk25786/tz1125788
https://q.yingjiesheng.com/forum/bk25786/tz1125789
https://q.yingjiesheng.com/forum/bk25786/tz1125790
https://q.yingjiesheng.com/forum/bk25786/tz1125791
https://q.yingjiesheng.com/forum/bk25786/tz1125792
https://q.yingjiesheng.com/forum/bk25786/tz1125793
https://q.yingjiesheng.com/forum/bk25786/tz1125794
https://q.yingjiesheng.com/forum/bk25786/tz1125795
https://q.yingjiesheng.com/forum/bk25786/tz1125796
https://q.yingjiesheng.com/forum/bk25786/tz1125797
https://q.yingjiesheng.com/forum/bk25786/tz1125798
https://q.yingjiesheng.com/forum/bk25786/tz1125799
https://q.yingjiesheng.com/forum/bk25786/tz1125800
https://q.yingjiesheng.com/forum/bk25786/tz1125801
https://q.yingjiesheng.com/forum/bk25786/tz1125802
https://q.yingjiesheng.com/forum/bk25786/tz1125803
https://q.yingjiesheng.com/forum/bk25786/tz1125805
https://q.yingjiesheng.com/forum/bk25786/tz1125806
https://q.yingjiesheng.com/forum/bk25786/tz1125807
https://q.yingjiesheng.com/forum/bk25786/tz1125808
https://q.yingjiesheng.com/forum/bk25786/tz1125809
https://q.yingjiesheng.com/forum/bk25786/tz1125810
https://q.yingjiesheng.com/forum/bk25786/tz1125811
https://q.yingjiesheng.com/forum/bk25786/tz1125812
https://q.yingjiesheng.com/forum/bk25786/tz1125813
https://q.yingjiesheng.com/forum/bk25786/tz1125814
https://q.yingjiesheng.com/forum/bk25786/tz1125815
https://q.yingjiesheng.com/forum/bk25786/tz1125816
https://q.yingjiesheng.com/forum/bk25786/tz1125817
https://q.yingjiesheng.com/forum/bk25786/tz1125818
https://q.yingjiesheng.com/forum/bk25786/tz1125819
https://q.yingjiesheng.com/forum/bk25786/tz1125820
https://q.yingjiesheng.com/forum/bk25786/tz1125821
https://q.yingjiesheng.com/forum/bk25786/tz1125822
https://q.yingjiesheng.com/forum/bk25786/tz1125823
https://q.yingjiesheng.com/forum/bk25786/tz1125824
https://q.yingjiesheng.com/forum/bk25786/tz1125825
https://q.yingjiesheng.com/forum/bk25786/tz1125826
https://q.yingjiesheng.com/forum/bk25786/tz1125827
https://q.yingjiesheng.com/forum/bk25786/tz1125828
https://q.yingjiesheng.com/forum/bk25786/tz1125829
https://q.yingjiesheng.com/forum/bk25786/tz1125830
https://q.yingjiesheng.com/forum/bk25786/tz1125831
https://q.yingjiesheng.com/forum/bk25786/tz1125832
https://q.yingjiesheng.com/forum/bk25786/tz1125833
https://q.yingjiesheng.com/forum/bk25786/tz1125834
https://q.yingjiesheng.com/forum/bk25786/tz1125835
https://q.yingjiesheng.com/forum/bk25786/tz1125836
https://q.yingjiesheng.com/forum/bk25786/tz1125837
https://q.yingjiesheng.com/forum/bk25786/tz1125838
https://q.yingjiesheng.com/forum/bk25786/tz1125839
https://q.yingjiesheng.com/forum/bk25786/tz1125840
https://q.yingjiesheng.com/forum/bk25786/tz1125841
https://q.yingjiesheng.com/forum/bk25786/tz1125842
https://q.yingjiesheng.com/forum/bk25786/tz1125843
https://q.yingjiesheng.com/forum/bk25786/tz1125844
https://q.yingjiesheng.com/forum/bk25786/tz1125845
https://q.yingjiesheng.com/forum/bk25786/tz1125846
https://q.yingjiesheng.com/forum/bk25786/tz1125847
https://q.yingjiesheng.com/forum/bk25786/tz1125848
https://q.yingjiesheng.com/forum/bk25786/tz1125849
https://q.yingjiesheng.com/forum/bk25786/tz1125850
https://q.yingjiesheng.com/forum/bk25786/tz1125851
https://q.yingjiesheng.com/forum/bk25786/tz1125852
https://q.yingjiesheng.com/forum/bk25786/tz1125853
https://q.yingjiesheng.com/forum/bk25786/tz1125854
https://q.yingjiesheng.com/forum/bk25786/tz1125855
https://q.yingjiesheng.com/forum/bk25786/tz1125856
https://q.yingjiesheng.com/forum/bk25786/tz1125857
https://q.yingjiesheng.com/forum/bk25786/tz1125858
https://q.yingjiesheng.com/forum/bk25786/tz1125859
https://q.yingjiesheng.com/forum/bk25786/tz1125860
https://q.yingjiesheng.com/forum/bk25786/tz1125861
https://q.yingjiesheng.com/forum/bk25786/tz1125862
https://q.yingjiesheng.com/forum/bk25786/tz1125863
https://q.yingjiesheng.com/forum/bk25786/tz1125864
https://q.yingjiesheng.com/forum/bk25786/tz1125865
https://q.yingjiesheng.com/forum/bk25786/tz1125866
https://q.yingjiesheng.com/forum/bk25786/tz1125868
https://q.yingjiesheng.com/forum/bk25786/tz1125869
https://q.yingjiesheng.com/forum/bk25786/tz1125871
https://q.yingjiesheng.com/forum/bk25786/tz1125872
https://q.yingjiesheng.com/forum/bk25786/tz1125873
https://q.yingjiesheng.com/forum/bk25786/tz1125874
要判断当前行是否保存了代码,可从以下几个维度进行分析,具体方法取决于你所处的场景(如文本编辑器、代码编辑器、文档等),以下是通用判断思路:
一、从内容特征判断
语法结构识别
代码通常包含特定编程语言的语法元素,例如:
编程语言关键词(如 Python 的def、for、if;Java 的public、class、static)。
符号与格式:括号()、花括号{}、方括号[]、分号;、冒号:、运算符+、=、==等。
函数 / 方法调用(如print()、list.append())、变量定义(如int x = 5;)、代码块缩进。
示例:
python
运行
def calculate_sum(a, b):
return a + b
明显包含 Python 函数定义的语法特征,属于代码。
注释与代码标识
代码中常出现注释符号(如//、#、/ /),或被特定标记包裹(如 Markdown 中的代码块符号 ```)。
示例:
这是一行Python注释
// Java代码注释
二、从上下文场景判断
所在平台或工具
若在代码编辑器(如 VS Code、PyCharm)、IDE 或编程相关文档中,当前行更可能是代码。
若在普通文本编辑器、Word 文档或市场分析报告中(如前序对话中的大蒜价格数据),则更可能是纯文本。
前后文关联
查看当前行的上下文:
若前后文有代码块、编程术语(如 “函数”“变量”“循环”),则当前行可能是代码的一部分。
若前后文为自然语言描述(如市场行情、操作步骤),则更可能是普通文本。
三、特殊场景的判断技巧
Markdown 或文档中的代码块
若当前行被 ``或
包裹(如代码块标记),则属于代码。
示例:
java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
纯文本中的代码片段
即使没有标记,若内容符合编程语言语法(如一行 SQL 语句、HTML 标签),也属于代码。
示例:
SELECT * FROM users WHERE age > 18;(SQL 代码)
<div class="container">内容</div>(HTML 代码)
四、总结:判断流程
看内容:是否包含编程语言关键词、符号、语法结构。
看标记:是否被代码块符号包裹,或有注释符号。
看场景:是否在编程相关工具或上下文中。
若满足以上任意一点,当前行更可能是代码;若内容为自然语言、数据列表或非结构化文本,则不是代码。
https://q.yingjiesheng.com/forum/bk25786/tz1125678
https://q.yingjiesheng.com/forum/bk25786/tz1125679
https://q.yingjiesheng.com/forum/bk25786/tz1125680
https://q.yingjiesheng.com/forum/bk25786/tz1125681
https://q.yingjiesheng.com/forum/bk25786/tz1125682
https://q.yingjiesheng.com/forum/bk25786/tz1125683
https://q.yingjiesheng.com/forum/bk25786/tz1125684
https://q.yingjiesheng.com/forum/bk25786/tz1125685
https://q.yingjiesheng.com/forum/bk25786/tz1125686
https://q.yingjiesheng.com/forum/bk25786/tz1125688
https://q.yingjiesheng.com/forum/bk25786/tz1125690
https://q.yingjiesheng.com/forum/bk25786/tz1125691
https://q.yingjiesheng.com/forum/bk25786/tz1125692
https://q.yingjiesheng.com/forum/bk25786/tz1125693
https://q.yingjiesheng.com/forum/bk25786/tz1125694
https://q.yingjiesheng.com/forum/bk25786/tz1125695
https://q.yingjiesheng.com/forum/bk25786/tz1125696
https://q.yingjiesheng.com/forum/bk25786/tz1125697
https://q.yingjiesheng.com/forum/bk25786/tz1125698
https://q.yingjiesheng.com/forum/bk25786/tz1125699
https://q.yingjiesheng.com/forum/bk25786/tz1125700
https://q.yingjiesheng.com/forum/bk25786/tz1125701
https://q.yingjiesheng.com/forum/bk25786/tz1125702
https://q.yingjiesheng.com/forum/bk25786/tz1125703
https://q.yingjiesheng.com/forum/bk25786/tz1125704
https://q.yingjiesheng.com/forum/bk25786/tz1125705
https://q.yingjiesheng.com/forum/bk25786/tz1125706
https://q.yingjiesheng.com/forum/bk25786/tz1125707
https://q.yingjiesheng.com/forum/bk25786/tz1125708
https://q.yingjiesheng.com/forum/bk25786/tz1125709
https://q.yingjiesheng.com/forum/bk25786/tz1125710
https://q.yingjiesheng.com/forum/bk25786/tz1125711
https://q.yingjiesheng.com/forum/bk25786/tz1125712
https://q.yingjiesheng.com/forum/bk25786/tz1125713
https://q.yingjiesheng.com/forum/bk25786/tz1125714
https://q.yingjiesheng.com/forum/bk25786/tz1125715
https://q.yingjiesheng.com/forum/bk25786/tz1125716
https://q.yingjiesheng.com/forum/bk25786/tz1125717
https://q.yingjiesheng.com/forum/bk25786/tz1125718
https://q.yingjiesheng.com/forum/bk25786/tz1125719
https://q.yingjiesheng.com/forum/bk25786/tz1125720
https://q.yingjiesheng.com/forum/bk25786/tz1125721
https://q.yingjiesheng.com/forum/bk25786/tz1125722
https://q.yingjiesheng.com/forum/bk25786/tz1125723
https://q.yingjiesheng.com/forum/bk25786/tz1125724
https://q.yingjiesheng.com/forum/bk25786/tz1125725
https://q.yingjiesheng.com/forum/bk25786/tz1125726
https://q.yingjiesheng.com/forum/bk25786/tz1125727
https://q.yingjiesheng.com/forum/bk25786/tz1125728
https://q.yingjiesheng.com/forum/bk25786/tz1125729
https://q.yingjiesheng.com/forum/bk25786/tz1125730
https://q.yingjiesheng.com/forum/bk25786/tz1125731
https://q.yingjiesheng.com/forum/bk25786/tz1125732
https://q.yingjiesheng.com/forum/bk25786/tz1125733
https://q.yingjiesheng.com/forum/bk25786/tz1125734
https://q.yingjiesheng.com/forum/bk25786/tz1125735
https://q.yingjiesheng.com/forum/bk25786/tz1125736
https://q.yingjiesheng.com/forum/bk25786/tz1125737
https://q.yingjiesheng.com/forum/bk25786/tz1125738
https://q.yingjiesheng.com/forum/bk25786/tz1125739
https://q.yingjiesheng.com/forum/bk25786/tz1125740
https://q.yingjiesheng.com/forum/bk25786/tz1125741
https://q.yingjiesheng.com/forum/bk25786/tz1125742
https://q.yingjiesheng.com/forum/bk25786/tz1125743
https://q.yingjiesheng.com/forum/bk25786/tz1125744
https://q.yingjiesheng.com/forum/bk25786/tz1125745
https://q.yingjiesheng.com/forum/bk25786/tz1125746
https://q.yingjiesheng.com/forum/bk25786/tz1125747
https://q.yingjiesheng.com/forum/bk25786/tz1125748
https://q.yingjiesheng.com/forum/bk25786/tz1125749
https://q.yingjiesheng.com/forum/bk25786/tz1125750
https://q.yingjiesheng.com/forum/bk25786/tz1125751
https://q.yingjiesheng.com/forum/bk25786/tz1125752
https://q.yingjiesheng.com/forum/bk25786/tz1125753
https://q.yingjiesheng.com/forum/bk25786/tz1125754
https://q.yingjiesheng.com/forum/bk25786/tz1125755
https://q.yingjiesheng.com/forum/bk25786/tz1125756
https://q.yingjiesheng.com/forum/bk25786/tz1125757
https://q.yingjiesheng.com/forum/bk25786/tz1125758
https://q.yingjiesheng.com/forum/bk25786/tz1125759
https://q.yingjiesheng.com/forum/bk25786/tz1125760
https://q.yingjiesheng.com/forum/bk25786/tz1125761
https://q.yingjiesheng.com/forum/bk25786/tz1125762
https://q.yingjiesheng.com/forum/bk25786/tz1125763
https://q.yingjiesheng.com/forum/bk25786/tz1125764
https://q.yingjiesheng.com/forum/bk25786/tz1125767
https://q.yingjiesheng.com/forum/bk25786/tz1125768
https://q.yingjiesheng.com/forum/bk25786/tz1125769
https://q.yingjiesheng.com/forum/bk25786/tz1125770
https://q.yingjiesheng.com/forum/bk25786/tz1125771
https://q.yingjiesheng.com/forum/bk25786/tz1125772
https://q.yingjiesheng.com/forum/bk25786/tz1125773
https://q.yingjiesheng.com/forum/bk25786/tz1125774
https://q.yingjiesheng.com/forum/bk25786/tz1125775
https://q.yingjiesheng.com/forum/bk25786/tz1125776
https://q.yingjiesheng.com/forum/bk25786/tz1125777
https://q.yingjiesheng.com/forum/bk25786/tz1125778
https://q.yingjiesheng.com/forum/bk25786/tz1125779
https://q.yingjiesheng.com/forum/bk25786/tz1125780
https://q.yingjiesheng.com/forum/bk25786/tz1125781
https://q.yingjiesheng.com/forum/bk25786/tz1125782
https://q.yingjiesheng.com/forum/bk25786/tz1125783
https://q.yingjiesheng.com/forum/bk25786/tz1125784
https://q.yingjiesheng.com/forum/bk25786/tz1125785
https://q.yingjiesheng.com/forum/bk25786/tz1125786
https://q.yingjiesheng.com/forum/bk25786/tz1125787
https://q.yingjiesheng.com/forum/bk25786/tz1125788
https://q.yingjiesheng.com/forum/bk25786/tz1125789
https://q.yingjiesheng.com/forum/bk25786/tz1125790
https://q.yingjiesheng.com/forum/bk25786/tz1125791
https://q.yingjiesheng.com/forum/bk25786/tz1125792
https://q.yingjiesheng.com/forum/bk25786/tz1125793
https://q.yingjiesheng.com/forum/bk25786/tz1125794
https://q.yingjiesheng.com/forum/bk25786/tz1125795
https://q.yingjiesheng.com/forum/bk25786/tz1125796
https://q.yingjiesheng.com/forum/bk25786/tz1125797
https://q.yingjiesheng.com/forum/bk25786/tz1125798
https://q.yingjiesheng.com/forum/bk25786/tz1125799
https://q.yingjiesheng.com/forum/bk25786/tz1125800
https://q.yingjiesheng.com/forum/bk25786/tz1125801
https://q.yingjiesheng.com/forum/bk25786/tz1125802
https://q.yingjiesheng.com/forum/bk25786/tz1125803
https://q.yingjiesheng.com/forum/bk25786/tz1125805
https://q.yingjiesheng.com/forum/bk25786/tz1125806
https://q.yingjiesheng.com/forum/bk25786/tz1125807
https://q.yingjiesheng.com/forum/bk25786/tz1125808
https://q.yingjiesheng.com/forum/bk25786/tz1125809
https://q.yingjiesheng.com/forum/bk25786/tz1125810
https://q.yingjiesheng.com/forum/bk25786/tz1125811
https://q.yingjiesheng.com/forum/bk25786/tz1125812
https://q.yingjiesheng.com/forum/bk25786/tz1125813
https://q.yingjiesheng.com/forum/bk25786/tz1125814
https://q.yingjiesheng.com/forum/bk25786/tz1125815
https://q.yingjiesheng.com/forum/bk25786/tz1125816
https://q.yingjiesheng.com/forum/bk25786/tz1125817
https://q.yingjiesheng.com/forum/bk25786/tz1125818
https://q.yingjiesheng.com/forum/bk25786/tz1125819
https://q.yingjiesheng.com/forum/bk25786/tz1125820
https://q.yingjiesheng.com/forum/bk25786/tz1125821
https://q.yingjiesheng.com/forum/bk25786/tz1125822
https://q.yingjiesheng.com/forum/bk25786/tz1125823
https://q.yingjiesheng.com/forum/bk25786/tz1125824
https://q.yingjiesheng.com/forum/bk25786/tz1125825
https://q.yingjiesheng.com/forum/bk25786/tz1125826
https://q.yingjiesheng.com/forum/bk25786/tz1125827
https://q.yingjiesheng.com/forum/bk25786/tz1125828
https://q.yingjiesheng.com/forum/bk25786/tz1125829
https://q.yingjiesheng.com/forum/bk25786/tz1125830
https://q.yingjiesheng.com/forum/bk25786/tz1125831
https://q.yingjiesheng.com/forum/bk25786/tz1125832
https://q.yingjiesheng.com/forum/bk25786/tz1125833
https://q.yingjiesheng.com/forum/bk25786/tz1125834
https://q.yingjiesheng.com/forum/bk25786/tz1125835
https://q.yingjiesheng.com/forum/bk25786/tz1125836
https://q.yingjiesheng.com/forum/bk25786/tz1125837
https://q.yingjiesheng.com/forum/bk25786/tz1125838
https://q.yingjiesheng.com/forum/bk25786/tz1125839
https://q.yingjiesheng.com/forum/bk25786/tz1125840
https://q.yingjiesheng.com/forum/bk25786/tz1125841
https://q.yingjiesheng.com/forum/bk25786/tz1125842
https://q.yingjiesheng.com/forum/bk25786/tz1125843
https://q.yingjiesheng.com/forum/bk25786/tz1125844
https://q.yingjiesheng.com/forum/bk25786/tz1125845
https://q.yingjiesheng.com/forum/bk25786/tz1125846
https://q.yingjiesheng.com/forum/bk25786/tz1125847
https://q.yingjiesheng.com/forum/bk25786/tz1125848
https://q.yingjiesheng.com/forum/bk25786/tz1125849
https://q.yingjiesheng.com/forum/bk25786/tz1125850
https://q.yingjiesheng.com/forum/bk25786/tz1125851
https://q.yingjiesheng.com/forum/bk25786/tz1125852
https://q.yingjiesheng.com/forum/bk25786/tz1125853
https://q.yingjiesheng.com/forum/bk25786/tz1125854
https://q.yingjiesheng.com/forum/bk25786/tz1125855
https://q.yingjiesheng.com/forum/bk25786/tz1125856
https://q.yingjiesheng.com/forum/bk25786/tz1125857
https://q.yingjiesheng.com/forum/bk25786/tz1125858
https://q.yingjiesheng.com/forum/bk25786/tz1125859
https://q.yingjiesheng.com/forum/bk25786/tz1125860
https://q.yingjiesheng.com/forum/bk25786/tz1125861
https://q.yingjiesheng.com/forum/bk25786/tz1125862
https://q.yingjiesheng.com/forum/bk25786/tz1125863
https://q.yingjiesheng.com/forum/bk25786/tz1125864
https://q.yingjiesheng.com/forum/bk25786/tz1125865
https://q.yingjiesheng.com/forum/bk25786/tz1125866
https://q.yingjiesheng.com/forum/bk25786/tz1125868
https://q.yingjiesheng.com/forum/bk25786/tz1125869
https://q.yingjiesheng.com/forum/bk25786/tz1125871
https://q.yingjiesheng.com/forum/bk25786/tz1125872
https://q.yingjiesheng.com/forum/bk25786/tz1125873
https://q.yingjiesheng.com/forum/bk25786/tz1125874

在不同分辨率的屏幕下,编辑器菜单字体显示问题
在最新版的编辑器上;1920屏幕上字体还可以;大于2000就 太小了;严重bug
在最新版的编辑器上;1920屏幕上字体还可以;大于2000就 太小了;严重bug