HBuilderX

HBuilderX

极客开发工具
uni-app

uni-app

开发一次,多端覆盖
uniCloud

uniCloud

云开发平台
HTML5+

HTML5+

增强HTML5的功能体验
MUI

MUI

上万Star的前端框架

Uniapp 的鸿蒙 next 应用中隐藏和显示系统状态栏

鸿蒙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'])  
}

示例工程:

收起阅读 »

编辑器字体

字体

希望可以有修改编辑器字体的配置,就是配置除编码区域外的字体,现在默认的字体太难受了

希望可以有修改编辑器字体的配置,就是配置除编码区域外的字体,现在默认的字体太难受了

如何判断当前行是否保存了代码?

atob

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

【公告】腾讯云服务空间套餐升级、能力变更通知

uniCloud

为了给开发者提供更加优质可靠的产品服务,腾讯云计划将于2025年6月30日对服务空间套餐进行升级。

套餐升级后,套餐能力也有相应变更,腾讯云会分多次上线能力变更,具体计划如下:

2025年8月31日(已上线)

能力 个人版(19.9元/月) 入门版(99元/月) 标准版(199元/月) 199元以上套餐
云函数 - 超时时间 3s,不支持修改 3s,不支持修改 最大900s 最大900s
云函数 - 运行内存 256M,不支持修改 256M,不支持修改 支持修改 支持修改
云函数 - 日志保存时长 2小时 2小时 3天 7天
前端网页托管 - 防盗链配置 不支持 不支持 支持 支持
前端网页托管 - IP黑白名单配置 不支持 不支持 不支持 支持
前端网页托管 - IP访问限频配置 不支持 不支持 支持 支持

2025年6月30日(已上线)

能力 个人版(19.9元/月) 入门版(99元/月) 199元及以上套餐
云数据库 - 数据库回档 不支持 不支持 支持
云函数 - 固定出口IP 不支持 不支持 支持
  • 变更时间之后将不再支持以上能力,请及时关注您使用的套餐是否强依赖以上变更能力,如有需求可升级更高套餐版本。
  • 现有套餐如果降配到低版本套餐时,以上能力也将会自动变更,套餐不支持的能力将会失效。

套餐版本变更

已与2025年6月30日生效

配额 个人版(提升) 标准版(新增) 初创版(下线) 团队版(下线) 企业版(新增) 团队高级版(下线) 企业增强版(新增) 单位
QPS 500 500 500 1000 1000 1500 1000 -
调用次数 20 800 1000 5000 5000 20000 20000 万次
容量 2 3 100 100 300 500 1500 2000 GB
云函数资源使用量 10 15 60 45 100 150 1000 1500 万GBs
云函数外网出流量 2 4 20 10 25 50 100 200 GB
CDN流量 5 10 300 200 600 1200 2000 4000 GB
CDN回源流量 5 10 120 100 300 600 1000 2000 GB
价格 39.9 19.9 199 299 999 999 4999 4999 元/月
  • 套餐版本增加标准版企业版企业增强版。原有的初创版团队版团队高级版将下线不再支持新购,已有套餐用户不受影响可继续使用、续费。
  • 新增套餐及现有的个人版套餐资源配额提升,部分配额提升50% ~ 100%,个人版套餐资源配额提升已实时生效
  • 账号注册时间自2023年5月1日起,且未创建过腾讯云空间或第一次创建腾讯云空间在2023年10月9日之后,支持购买新增的三个套餐。
继续阅读 »

为了给开发者提供更加优质可靠的产品服务,腾讯云计划将于2025年6月30日对服务空间套餐进行升级。

套餐升级后,套餐能力也有相应变更,腾讯云会分多次上线能力变更,具体计划如下:

2025年8月31日(已上线)

能力 个人版(19.9元/月) 入门版(99元/月) 标准版(199元/月) 199元以上套餐
云函数 - 超时时间 3s,不支持修改 3s,不支持修改 最大900s 最大900s
云函数 - 运行内存 256M,不支持修改 256M,不支持修改 支持修改 支持修改
云函数 - 日志保存时长 2小时 2小时 3天 7天
前端网页托管 - 防盗链配置 不支持 不支持 支持 支持
前端网页托管 - IP黑白名单配置 不支持 不支持 不支持 支持
前端网页托管 - IP访问限频配置 不支持 不支持 支持 支持

2025年6月30日(已上线)

能力 个人版(19.9元/月) 入门版(99元/月) 199元及以上套餐
云数据库 - 数据库回档 不支持 不支持 支持
云函数 - 固定出口IP 不支持 不支持 支持
  • 变更时间之后将不再支持以上能力,请及时关注您使用的套餐是否强依赖以上变更能力,如有需求可升级更高套餐版本。
  • 现有套餐如果降配到低版本套餐时,以上能力也将会自动变更,套餐不支持的能力将会失效。

套餐版本变更

已与2025年6月30日生效

配额 个人版(提升) 标准版(新增) 初创版(下线) 团队版(下线) 企业版(新增) 团队高级版(下线) 企业增强版(新增) 单位
QPS 500 500 500 1000 1000 1500 1000 -
调用次数 20 800 1000 5000 5000 20000 20000 万次
容量 2 3 100 100 300 500 1500 2000 GB
云函数资源使用量 10 15 60 45 100 150 1000 1500 万GBs
云函数外网出流量 2 4 20 10 25 50 100 200 GB
CDN流量 5 10 300 200 600 1200 2000 4000 GB
CDN回源流量 5 10 120 100 300 600 1000 2000 GB
价格 39.9 19.9 199 299 999 999 4999 4999 元/月
  • 套餐版本增加标准版企业版企业增强版。原有的初创版团队版团队高级版将下线不再支持新购,已有套餐用户不受影响可继续使用、续费。
  • 新增套餐及现有的个人版套餐资源配额提升,部分配额提升50% ~ 100%,个人版套餐资源配额提升已实时生效
  • 账号注册时间自2023年5月1日起,且未创建过腾讯云空间或第一次创建腾讯云空间在2023年10月9日之后,支持购买新增的三个套餐。
收起阅读 »

代做.9.png、安卓/uniapp、苹果启动图

启动图片

十年开发、设计经验
1.代做 安卓.9.png 、iOS苹果storyboard 启动图片,不满意免费修改;
2.代上架安卓应用市场/苹果APP Store;
3.解决前/后端问题;
4.定制/二次开发app、小程序、各类网站系统。
5.前端可以做: react、vue、uniapp、Flutter、原生安卓开发、小程序原生开发、安卓原生开发
6.后端可以做:PHP、Java、Python、nodejs
联系方式: wx:lh1845407111 QQ:1845407111
工作室官网:https://www.xiaohongzi.top/h5/#/home 欢迎大家访问
价格便宜,包满意!包满意!包满意!

继续阅读 »

十年开发、设计经验
1.代做 安卓.9.png 、iOS苹果storyboard 启动图片,不满意免费修改;
2.代上架安卓应用市场/苹果APP Store;
3.解决前/后端问题;
4.定制/二次开发app、小程序、各类网站系统。
5.前端可以做: react、vue、uniapp、Flutter、原生安卓开发、小程序原生开发、安卓原生开发
6.后端可以做:PHP、Java、Python、nodejs
联系方式: wx:lh1845407111 QQ:1845407111
工作室官网:https://www.xiaohongzi.top/h5/#/home 欢迎大家访问
价格便宜,包满意!包满意!包满意!

收起阅读 »

nvue页面报错X [ERROR] No matching export in ...... for import "default"

外层 package.json 增加 "pnpm": {"overrides": {"rollup":"4.14.3"}},重新安装,再次打包
记得删除pnpm-lock.yaml 再重新拉 node_modules

继续阅读 »

外层 package.json 增加 "pnpm": {"overrides": {"rollup":"4.14.3"}},重新安装,再次打包
记得删除pnpm-lock.yaml 再重新拉 node_modules

收起阅读 »

关于地图组件拿不到中心点 getCenterLocation 问题,解决方案

uniapp

可以在APP下使用 plus 5+ 方法获取

map html 5+ plus

// #ifdef APP-PLUS  
this.mapContext.$getAppMap().getCurrentCenter((state, point) => {  
    console.log(state, point);  
    if (0 == state) {  
           this.geocodeRegeo(point)  
    } else {  
          console.log("Failed!");  
    }  
    });  
// #endif  
// #ifdef H5  
this.mapContext.getCenterLocation({  
    success: (res) => {  
        this.geocodeRegeo(res)  
    }  
    });  
// #endif               
继续阅读 »

可以在APP下使用 plus 5+ 方法获取

map html 5+ plus

// #ifdef APP-PLUS  
this.mapContext.$getAppMap().getCurrentCenter((state, point) => {  
    console.log(state, point);  
    if (0 == state) {  
           this.geocodeRegeo(point)  
    } else {  
          console.log("Failed!");  
    }  
    });  
// #endif  
// #ifdef H5  
this.mapContext.getCenterLocation({  
    success: (res) => {  
        this.geocodeRegeo(res)  
    }  
    });  
// #endif               
收起阅读 »

创业公司招聘公告

招聘

创业公司团队组建,招聘职位如下,有换工作的小伙伴滴滴。正式面试的时候会打电话通知。只接受上海。

创业公司团队组建,招聘职位如下,有换工作的小伙伴滴滴。正式面试的时候会打电话通知。只接受上海。

最近hbuilderx 怎么停更了,好久没更新了

HBuilderX

最近hbuilderx 怎么停更了,好久没更新了

最近hbuilderx 怎么停更了,好久没更新了

uni-app 能否搞一套声明式UI呢,声明式UI是趋势呢,能极大的提高开发效率呢

鸿蒙的开发思路就是: 声明式UI + TS 这种模式用着很舒服呢

鸿蒙的开发思路就是: 声明式UI + TS 这种模式用着很舒服呢

flutter3.32调用deepseek客户端ai流式模板

flutter

flutter3-win-deepseek:最新研发 flutter3.32+dio+deepseek-v3+window_manager 接入 deepseek-v3 大模型。支持侧边栏收缩、本地会话存储、代码块高亮、代码块横向滚动、表格边框线、图片100%宽度渲染、图片预览、链接跳转

技术栈

  • 开发工具:VScode
  • 技术框架:flutter3.32.0+dart3.8.0
  • 对话大模型:deepseek-v3
  • 流请求:dio^5.8.0+1
  • 窗口管理:window_manager^0.5.0
  • 托盘管理:system_tray^2.0.3
  • 路由/状态管理:get^4.7.2
  • 存储服务:get_storage^2.1.1
  • markdown解析:flutter_markdown^0.7.7
  • 高亮组件:flutter_highlight^0.7.0
  • 环境变量配置:flutter_dotenv^5.2.1

项目特性

  1. 支持侧边栏收缩/展开
  2. 支持多轮对话、代码高亮、本地存储会话
  3. 支持代码块横向滚动、复制代码功能
  4. 支持图片100%宽度渲染、在线图片预览
  5. 支持网络链接跳转、表格功能
  6. 自定义无边框窗口、托盘图标

项目框架目录

flutter3-winseek桌面端ai对话系统已经更新到我的原创作品集。
flutter3.32+deepseek+dio客户端ai流式对话Exe

如果想要了解更多的技术实现细节的话,可以去看看下面这篇分享文章。
flutter3-winseek客户端AI实例|Flutter3.32+DeepSeek流式ai对话模板Exe

热文推荐

flutter3-deepseek流式AI模板|Flutter3.27+Dio+DeepSeeek聊天ai助手
uniapp+vue3+deepseek+uv-ui跨端实战仿deepseek/豆包流式ai聊天对话助手
vue3-webseek网页版AI问答|Vite6+DeepSeek+Arco流式ai聊天打字效果
Electron35-DeepSeek桌面端AI系统|vue3.5+electron+arco客户端ai模板
Vue3-DeepSeek-Chat流式AI对话|vite6+vant4+deepseek智能ai聊天助手
flutter3-dymall仿抖音直播商城|Flutter3.27短视频+直播+聊天App实例
Vite5+Electron聊天室|electron31跨平台仿微信EXE客户端|vue3聊天程序
Tauri2.0-Vue3OS桌面端os平台|tauri2+vite6+arco电脑版OS管理系统
uniapp+vue3聊天室|uni-app+vite4+uv-ui跨端仿微信app聊天语音/朋友圈

继续阅读 »

flutter3-win-deepseek:最新研发 flutter3.32+dio+deepseek-v3+window_manager 接入 deepseek-v3 大模型。支持侧边栏收缩、本地会话存储、代码块高亮、代码块横向滚动、表格边框线、图片100%宽度渲染、图片预览、链接跳转

技术栈

  • 开发工具:VScode
  • 技术框架:flutter3.32.0+dart3.8.0
  • 对话大模型:deepseek-v3
  • 流请求:dio^5.8.0+1
  • 窗口管理:window_manager^0.5.0
  • 托盘管理:system_tray^2.0.3
  • 路由/状态管理:get^4.7.2
  • 存储服务:get_storage^2.1.1
  • markdown解析:flutter_markdown^0.7.7
  • 高亮组件:flutter_highlight^0.7.0
  • 环境变量配置:flutter_dotenv^5.2.1

项目特性

  1. 支持侧边栏收缩/展开
  2. 支持多轮对话、代码高亮、本地存储会话
  3. 支持代码块横向滚动、复制代码功能
  4. 支持图片100%宽度渲染、在线图片预览
  5. 支持网络链接跳转、表格功能
  6. 自定义无边框窗口、托盘图标

项目框架目录

flutter3-winseek桌面端ai对话系统已经更新到我的原创作品集。
flutter3.32+deepseek+dio客户端ai流式对话Exe

如果想要了解更多的技术实现细节的话,可以去看看下面这篇分享文章。
flutter3-winseek客户端AI实例|Flutter3.32+DeepSeek流式ai对话模板Exe

热文推荐

flutter3-deepseek流式AI模板|Flutter3.27+Dio+DeepSeeek聊天ai助手
uniapp+vue3+deepseek+uv-ui跨端实战仿deepseek/豆包流式ai聊天对话助手
vue3-webseek网页版AI问答|Vite6+DeepSeek+Arco流式ai聊天打字效果
Electron35-DeepSeek桌面端AI系统|vue3.5+electron+arco客户端ai模板
Vue3-DeepSeek-Chat流式AI对话|vite6+vant4+deepseek智能ai聊天助手
flutter3-dymall仿抖音直播商城|Flutter3.27短视频+直播+聊天App实例
Vite5+Electron聊天室|electron31跨平台仿微信EXE客户端|vue3聊天程序
Tauri2.0-Vue3OS桌面端os平台|tauri2+vite6+arco电脑版OS管理系统
uniapp+vue3聊天室|uni-app+vite4+uv-ui跨端仿微信app聊天语音/朋友圈

收起阅读 »