
基于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
最垃圾的软件没有之一,国产垃圾乐色软件运行不了你妈啊傻逼软件最恶心人了开发这个软件的程序员就是家里死完了
最垃圾的软件没有之一,国产垃圾乐色软件运行不了你妈啊傻逼软件最恶心人了开发这个软件的程序员就是家里死完了

如何判断当前行是否保存了代码?
要判断当前行是否保存了代码,可从以下几个维度进行分析,具体方法取决于你所处的场景(如文本编辑器、代码编辑器、文档等),以下是通用判断思路:
一、从内容特征判断
语法结构识别
代码通常包含特定编程语言的语法元素,例如:
编程语言关键词(如 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

打开多窗体项目里的项目列表可以删除吗
在hbuildx中,由于项目比较多,使用打开多窗体项目打开的项目就多了,有时候想把不再开发的项目去掉,但是没有查到任何可以改的方式,有没有人知道啊
在hbuildx中,由于项目比较多,使用打开多窗体项目打开的项目就多了,有时候想把不再开发的项目去掉,但是没有查到任何可以改的方式,有没有人知道啊

Mac系统中hbuilderx 4.65mac版本配置插件总是报打开权限不足
2025-05-18 23:59:58.614 [INFO:] PluginInstall setInstallText: "uniapp-debugger" --- 1 :: "正在下载"
2025-05-18 23:59:58.615 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/upgrade_repositories/4.65.2025051206/macosx/plugins/index.json"
2025-05-18 23:59:58.907 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/marketplace/plugin.json"
2025-05-18 23:59:59.209 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/upgrade_repositories/4.65.2025051206/macosx/update/index.json"
2025-05-18 23:59:59.597 [INFO:] (startdownload "uniapp-debugger" ) downloadpluginzipfromindex
2025-05-18 23:59:59.597 [INFO:] (downloadpluginzipfromindex "uniapp-debugger" ) set state to downloading
2025-05-18 23:59:59.598 [INFO:] (downloadpluginzipfromindex "uniapp-debugger" ) make path: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/plugins/"
2025-05-18 23:59:59.598 [WARNING:] (startdownload "uniapp-debugger" )[return]downloadpluginzipfromindex: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/plugins/ 打开权限不足!"
2025-05-18 23:59:59.598 [INFO:] endWatcher: pluginName: "uniapp-debugger" path: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-debugger" thread: 13072797696
2025-05-18 23:59:59.599 [INFO:] (startdownload "uniapp-debugger" ) state = downloadfailed
2025-05-18 23:59:59.599 [INFO:] QObject::destroyed state 4
2025-05-18 23:59:59.599 [INFO:] PluginInstall setInstallText: "uniapp-debugger" --- 4 :: "安装"
2025-05-18 23:59:59.611 [WARNING:] QLayout: Attempting to add QLayout "" to MsgItemWidget "MsgItem", which already has a layout
2025-05-19 00:03:07.290 [INFO:] QEvent(WindowActivate, 0x30b00e9d8)
2025-05-19 00:03:11.572 [INFO:] Upgrade::isFallbackedVersion ?
2025-05-19 00:03:11.572 [INFO:] Upgrade::isFallbackedVersion return false
2025-05-19 00:03:11.572 [INFO:] Upgrade::canFallback::check( "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/backup/root/hbuilder.root" ) exits?
2025-05-19 00:03:11.573 [INFO:] Upgrade::canFallback::check return false
2025-05-19 00:03:48.966 [INFO:] QEvent(WindowDeactivate, 0x30b00e9c0)
2025-05-19 00:03:49.047 [INFO:] QEvent(WindowActivate, 0x30b00c6a8)
2025-05-18 23:59:58.614 [INFO:] PluginInstall setInstallText: "uniapp-debugger" --- 1 :: "正在下载"
2025-05-18 23:59:58.615 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/upgrade_repositories/4.65.2025051206/macosx/plugins/index.json"
2025-05-18 23:59:58.907 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/marketplace/plugin.json"
2025-05-18 23:59:59.209 [INFO:] (startdownload "uniapp-debugger" ) get json: "https://update.liuyingyong.cn/hbuilderx/upgrade_repositories/4.65.2025051206/macosx/update/index.json"
2025-05-18 23:59:59.597 [INFO:] (startdownload "uniapp-debugger" ) downloadpluginzipfromindex
2025-05-18 23:59:59.597 [INFO:] (downloadpluginzipfromindex "uniapp-debugger" ) set state to downloading
2025-05-18 23:59:59.598 [INFO:] (downloadpluginzipfromindex "uniapp-debugger" ) make path: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/plugins/"
2025-05-18 23:59:59.598 [WARNING:] (startdownload "uniapp-debugger" )[return]downloadpluginzipfromindex: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/plugins/ 打开权限不足!"
2025-05-18 23:59:59.598 [INFO:] endWatcher: pluginName: "uniapp-debugger" path: "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-debugger" thread: 13072797696
2025-05-18 23:59:59.599 [INFO:] (startdownload "uniapp-debugger" ) state = downloadfailed
2025-05-18 23:59:59.599 [INFO:] QObject::destroyed state 4
2025-05-18 23:59:59.599 [INFO:] PluginInstall setInstallText: "uniapp-debugger" --- 4 :: "安装"
2025-05-18 23:59:59.611 [WARNING:] QLayout: Attempting to add QLayout "" to MsgItemWidget "MsgItem", which already has a layout
2025-05-19 00:03:07.290 [INFO:] QEvent(WindowActivate, 0x30b00e9d8)
2025-05-19 00:03:11.572 [INFO:] Upgrade::isFallbackedVersion ?
2025-05-19 00:03:11.572 [INFO:] Upgrade::isFallbackedVersion return false
2025-05-19 00:03:11.572 [INFO:] Upgrade::canFallback::check( "/Volumes/HBuilderX/HBuilderX.app/Contents/HBuilderX/update/backup/root/hbuilder.root" ) exits?
2025-05-19 00:03:11.573 [INFO:] Upgrade::canFallback::check return false
2025-05-19 00:03:48.966 [INFO:] QEvent(WindowDeactivate, 0x30b00e9c0)
2025-05-19 00:03:49.047 [INFO:] QEvent(WindowActivate, 0x30b00c6a8)

小程序小游戏获客越来越难了
小程序小游戏获客越来越难了,但是通过群分享是最简单有效的方式,我建了个互助群,大家有需要的都可以进来
小程序小游戏获客越来越难了,但是通过群分享是最简单有效的方式,我建了个互助群,大家有需要的都可以进来

打包小程序后多了shadow-grey.png 文件的临时解决办法
common main.wxss 文件会自动加上这些代码 本身这个文件已经无法访问 会导致加载速度变慢不说 还报错(仅导出正式版有 )。
@ - webkit - keyframes shadow - preload {
0 % {
background - image: url(https: //cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}}
解决办法:打开你的安装目录
D:\ProgramFiles\HBuilderX\plugins\uniapp-cli\node_modules\@dcloudio\uni-cli-shared\lib\platform.js
把第24行改为
return `${tagName}::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}`
保存后 重新导出程序就没有这个了
common main.wxss 文件会自动加上这些代码 本身这个文件已经无法访问 会导致加载速度变慢不说 还报错(仅导出正式版有 )。
@ - webkit - keyframes shadow - preload {
0 % {
background - image: url(https: //cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}}@keyframes shadow-preload{0%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}100%{background-image:url(https://cdn1.dcloud.net.cn/517a6b774d3055775253556c643367344f5455354d3245324f5455334d444d31597a6b77/img/shadow-grey.png)}}
解决办法:打开你的安装目录
D:\ProgramFiles\HBuilderX\plugins\uniapp-cli\node_modules\@dcloudio\uni-cli-shared\lib\platform.js
把第24行改为
return `${tagName}::after{position:fixed;content:'';left:-1000px;top:-1000px;-webkit-animation:shadow-preload .1s;-webkit-animation-delay:3s;animation:shadow-preload .1s;animation-delay:3s}`
保存后 重新导出程序就没有这个了
收起阅读 »